1 | <?php namespace EvolutionCMS; |
||
6 | class ManagerTheme implements ManagerThemeInterface |
||
7 | { |
||
8 | /** |
||
9 | * @var CoreInterface |
||
10 | */ |
||
11 | protected $core; |
||
12 | |||
13 | /** |
||
14 | * @var $theme |
||
15 | */ |
||
16 | protected $theme; |
||
17 | |||
18 | public function __construct(CoreInterface $core, $theme = '') |
||
28 | |||
29 | public function makePartial($name) |
||
33 | |||
34 | public function getPartial($name) |
||
38 | } |
||
39 |