| 1 | <?php | ||
| 7 | class DetailedTheme | ||
| 8 | { | ||
| 9 | protected $theme; | ||
| 10 | |||
| 11 | public $description = 'description.md'; | ||
| 12 | |||
| 13 | public $license = 'license.md'; | ||
| 14 | |||
| 15 | public $readme = 'readme.md'; | ||
| 16 | |||
| 17 | public $author = 'author.md'; | ||
| 18 | |||
| 19 | public $images = [ | ||
| 20 | '1.jpg', | ||
| 21 | '2.jpg', | ||
| 22 | '3.jpg', | ||
| 23 | ]; | ||
| 24 | |||
| 25 | public function __construct(Theme $theme) | ||
| 29 | |||
| 30 | public function getAttributes() | ||
| 34 | } | ||
| 35 |