1 | <?php namespace Modules\Core\Foundation\Theme; |
||
3 | class Theme |
||
4 | { |
||
5 | /** |
||
6 | * @var string the theme name |
||
7 | */ |
||
8 | private $name; |
||
9 | /** |
||
10 | * @var string the theme path |
||
11 | */ |
||
12 | private $path; |
||
13 | |||
14 | public function __construct($name, $path) |
||
19 | |||
20 | /** |
||
21 | * @return string |
||
22 | */ |
||
23 | public function getName() |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getPath() |
||
35 | |||
36 | /** |
||
37 | * Get name in lower case. |
||
38 | * |
||
39 | * @return string |
||
40 | */ |
||
41 | public function getLowerName() |
||
45 | } |
||
46 |