1 | <?php |
||
14 | class ViewbaseLayout implements EventSubscriberInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | private $pageLayout; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $viewbaseLayout; |
||
25 | |||
26 | public function __construct($viewbaseLayout) |
||
30 | |||
31 | public function setPageLayout($pageLayout) |
||
35 | |||
36 | public static function getSubscribedEvents() |
||
40 | |||
41 | public function injectViewbaseLayout(FilterViewParametersEvent $event) |
||
46 | } |
||
47 |