vendor/blackbit/data-director/EventListener/AdminStyleListener.php line 32

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.  *  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.
  7.  *
  8.  *  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
  9.  */
  10. namespace Blackbit\DataDirectorBundle\EventListener;
  11. use Blackbit\DataDirectorBundle\lib\Pim\AdminStyle\GridViewFieldsAdminStyle;
  12. use Pimcore\Bundle\AdminBundle\Event\ElementAdminStyleEvent;
  13. use Pimcore\Model\Element\AdminStyle;
  14. use Pimcore\Translation\Translator;
  15. class AdminStyleListener
  16. {
  17.     /** @var Translator */
  18.     private $translator;
  19.     public function __construct(Translator $translator)
  20.     {
  21.         $this->translator $translator;
  22.     }
  23.     /**
  24.      * @param ElementAdminStyleEvent|\Pimcore\Event\Admin\ElementAdminStyleEven $event
  25.      * @return void
  26.      */
  27.     public function onResolveElementAdminStyle($event)
  28.     {
  29.         if(!$event->getAdminStyle() instanceof AdminStyle) {
  30.             return;
  31.         }
  32.         $event->setAdminStyle(new GridViewFieldsAdminStyle($event->getElement(), $this->translator$event->getAdminStyle()));
  33.     }
  34. }