vendor/blackbit/data-director/EventListener/MappingPreviewListener.php line 22

Open in your IDE?
  1. <?php
  2. /**
  3.  * Copyright Blackbit digital Commerce GmbH <info@blackbit.de>
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
  6.  *
  7.  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  8.  *
  9.  * You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  10.  */
  11. namespace Blackbit\DataDirectorBundle\EventListener;
  12. use Blackbit\DataDirectorBundle\lib\Pim\Item\ItemMoldBuilder;
  13. use Blackbit\DataDirectorBundle\model\Dataport;
  14. use Pimcore\Cache;
  15. use Pimcore\Event\Model\ElementEventInterface;
  16. class MappingPreviewListener
  17. {
  18.     public function clearMappingPreviewCache(ElementEventInterface $e) {
  19.         if (\method_exists($e'getArgument')) {
  20.             try {
  21.                 $saveVersionOnly $e->getArgument('saveVersionOnly');
  22.                 if ($saveVersionOnly) {
  23.                     return;
  24.                 }
  25.             } catch (\InvalidArgumentException $exception) {
  26.             }
  27.         }
  28.         $element $e->getElement();
  29.         $dataports Dataport::getInstance();
  30.         foreach($dataports->find() as $dataport) {
  31.             Cache::remove('mapping-preview-'.$dataport['id'].'-'.$element->getId());
  32.         }
  33.     }
  34. }