| 1 | <?php |
||
| 19 | class CompilerTemplateCreation extends Event |
||
| 20 | { |
||
| 21 | const NAME = 'compile.template_creation'; |
||
| 22 | |||
| 23 | private $pageView; |
||
| 24 | private $template; |
||
| 25 | private $theme; |
||
| 26 | |||
| 27 | public function __construct(BasePageView $pageView, TemplateInterface $template, $theme) |
||
| 33 | |||
| 34 | public function getPageView() |
||
| 38 | |||
| 39 | public function getTemplate() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function getTheme() |
||
| 51 | } |
||
| 52 |