| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function __construct($itemLink) |
||
| 38 | { |
||
| 39 | $this->title = $itemLink->name; |
||
| 40 | $this->location = $itemLink->url; |
||
| 41 | |||
| 42 | $media = $itemLink->media; |
||
| 43 | |||
| 44 | // Set runtime |
||
| 45 | $this->runtime = $media->runtime; |
||
| 46 | |||
| 47 | // Generate a link to the artwork |
||
| 48 | $thumbnail = ThumbnailFactory::create($media->getArtwork(), Thumbnail::SIZE_LARGE); |
||
| 49 | $this->image = Yii::app()->request->hostInfo.$thumbnail->getUrl(); |
||
| 50 | } |
||
| 53 |