1 | <?php |
||
19 | class CompileProcessTemplateCreation extends Event |
||
20 | { |
||
21 | const NAME = 'compile.process.template_creation'; |
||
22 | |||
23 | private $pageView; |
||
24 | private $template; |
||
25 | private $theme; |
||
26 | |||
27 | 12 | public function __construct(BasePageView $pageView, TemplateInterface $template, $theme) |
|
33 | |||
34 | /** |
||
35 | * @return BasePageView |
||
36 | */ |
||
37 | public function getPageView() |
||
41 | |||
42 | /** |
||
43 | * @return TemplateInterface |
||
44 | */ |
||
45 | public function getTemplate() |
||
49 | |||
50 | /** |
||
51 | * @return string |
||
52 | */ |
||
53 | public function getTheme() |
||
57 | } |
||
58 |