custom/plugins/ShopvotePlugin/src/Subscriber/BadgeSubscriber.php line 32

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopvote\ShopvotePlugin\Subscriber;
  3. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  4. use Shopware\Storefront\Page\GenericPageLoadedEvent;
  5. use Shopware\Core\Framework\Struct\ArrayEntity;
  6. use Shopware\Core\System\SystemConfig\SystemConfigService;
  7. class BadgeSubscriber implements EventSubscriberInterface
  8. {
  9.     /** @var SystemConfigService */
  10.     private $systemConfigService;
  11.     /**
  12.      * CheckoutSubscriber constructor.
  13.      * @param SystemConfigService $systemConfigService
  14.      */
  15.     public function __construct(SystemConfigService $systemConfigService)
  16.     {
  17.         $this->systemConfigService $systemConfigService;
  18.     }
  19.     
  20.     public static function getSubscribedEvents(): array
  21.     {
  22.         return [
  23.             GenericPageLoadedEvent::class => 'onGenericPageLoaded'
  24.         ];
  25.     }
  26.  
  27.     public function onGenericPageLoaded (GenericPageLoadedEvent $event)
  28.     {
  29.         //declare an array
  30.         $array = [
  31.             'BadgeStatus' => $this->systemConfigService->get('ShopvotePlugin.config.shopvoteShowBadge'$event->getSalesChannelContext()->getSalesChannel()->getId()),
  32.             'GraficsCode' => $this->systemConfigService->get('ShopvotePlugin.config.graficsCode'$event->getSalesChannelContext()->getSalesChannel()->getId()),
  33.         ];
  34.  
  35.         //assign the array to the page
  36.         $event->getPage()->assign($array);
  37.  
  38.         //add the array to the page as an extension
  39.         $event->getPage()->addExtension('BadgeExtension', new ArrayEntity($array));
  40.         
  41.         //echo "Code: ".$this->systemConfigService->get('ShopvotePlugin.config.graficsCode');
  42.      
  43.        
  44.     }
  45. }
  46. ?>