<?php declare(strict_types=1);
namespace WbnSimpleStickyHeaderATN\Storefront\Subscriber;
use Shopware\Core\Framework\Struct\ArrayEntity;
use Shopware\Storefront\Event\StorefrontRenderEvent;
use Shopware\Storefront\Page\PageLoadedEvent;
use Shopware\Core\Content\Cms\Events\CmsPageLoadedEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Shopware\Core\System\SystemConfig\SystemConfigService;
class FrontendSubscriber implements EventSubscriberInterface
{
private $systemConfigService;
/**
* SystemConfigService: um Daten aus der config.xml zu verwerten
*
* @param SystemConfigService $systemConfigService
*/
public function __construct(
SystemConfigService $systemConfigService
)
{
$this->systemConfigService = $systemConfigService;
}
public static function getSubscribedEvents()
{
// Returning an Array of Events to listen to
return [
StorefrontRenderEvent::class => 'onStorefrontLoaded'
];
}
public function onStorefrontLoaded(StorefrontRenderEvent $event): void
{
$stickyHeaderScrollPosition = $this->systemConfigService->get('WbnSimpleStickyHeader.config.scrollPosition');
$event->setParameter('stickyHeaderScrollPosition',$stickyHeaderScrollPosition);
}
}