| 1 | <?php |
||
| 10 | class PlaylistItem |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var string the item title |
||
| 15 | */ |
||
| 16 | public $title; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string the item location (the URL) |
||
| 20 | */ |
||
| 21 | public $location; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var int the item runtime (in seconds) |
||
| 25 | */ |
||
| 26 | public $runtime; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var string the URL to the item image |
||
| 30 | */ |
||
| 31 | public $image; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Class constructor |
||
| 35 | * @param ItemLink $itemLink |
||
| 36 | */ |
||
| 37 | public function __construct($itemLink) |
||
| 50 | } |
||
| 51 | |||
| 52 | } |
||
| 53 |