1 | <?php |
||
15 | class DetailedTheme |
||
16 | { |
||
17 | protected $theme; |
||
18 | |||
19 | public $description = '/assets/description.md'; |
||
20 | |||
21 | public $license = 'MIT License'; |
||
22 | |||
23 | public $licenseText = '/assets/license.md'; |
||
24 | |||
25 | public $readme = '/assets/readme.md'; |
||
26 | |||
27 | public $author = '/assets/author.md'; |
||
28 | |||
29 | public $images = [ |
||
30 | '/assets/screenshots/1.png', |
||
31 | '/assets/screenshots/2.png', |
||
32 | '/assets/screenshots/3.png', |
||
33 | ]; |
||
34 | |||
35 | public function __construct(Theme $theme) |
||
39 | |||
40 | public function getAttributes() |
||
44 | } |
||
45 |