app/Plugin/Maker4/MakerEvent.php line 38

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Plugin\Maker4;
  13. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  14. use Eccube\Event\TemplateEvent;
  15. class MakerEvent implements EventSubscriberInterface
  16. {
  17.     /**
  18.      * {@inheritdoc}
  19.      *
  20.      * @return array
  21.      */
  22.     public static function getSubscribedEvents()
  23.     {
  24.         return [
  25.             'Product/detail.twig' => ['onTemplateProductDetail'10],
  26.         ];
  27.     }
  28.     /**
  29.      * Append JS to display maker
  30.      *
  31.      * @param TemplateEvent $templateEvent
  32.      */
  33.     public function onTemplateProductDetail(TemplateEvent $templateEvent)
  34.     {
  35.         $templateEvent->addSnippet('@Maker4/default/maker.twig');
  36.     }
  37. }