custom/plugins/WbnSimpleStickyHeaderATN/src/Storefront/Subscriber/FrontendSubscriber.php line 37

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace WbnSimpleStickyHeaderATN\Storefront\Subscriber;
  3. use Shopware\Core\Framework\Struct\ArrayEntity;
  4. use Shopware\Storefront\Event\StorefrontRenderEvent;
  5. use Shopware\Storefront\Page\PageLoadedEvent;
  6. use Shopware\Core\Content\Cms\Events\CmsPageLoadedEvent;
  7. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  8. use Shopware\Core\System\SystemConfig\SystemConfigService;
  9. class FrontendSubscriber implements EventSubscriberInterface
  10. {
  11.     private $systemConfigService;
  12.     /**
  13.      * SystemConfigService: um Daten aus der config.xml zu verwerten
  14.      *
  15.      * @param SystemConfigService $systemConfigService
  16.      */
  17.     public function __construct(
  18.         SystemConfigService $systemConfigService
  19.     )
  20.     {
  21.         $this->systemConfigService $systemConfigService;
  22.     }
  23.     public static function getSubscribedEvents()
  24.     {
  25.         // Returning an Array of Events to listen to
  26.         return [
  27.             StorefrontRenderEvent::class => 'onStorefrontLoaded'
  28.         ];
  29.     }
  30.     public function onStorefrontLoaded(StorefrontRenderEvent $event): void
  31.     {
  32.         $stickyHeaderScrollPosition $this->systemConfigService->get('WbnSimpleStickyHeader.config.scrollPosition');
  33.         $event->setParameter('stickyHeaderScrollPosition',$stickyHeaderScrollPosition);
  34.     }
  35. }