diff options
Diffstat (limited to '')
-rw-r--r-- | model/Room.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/model/Room.php b/model/Room.php index 28c60c6..f1cb933 100644 --- a/model/Room.php +++ b/model/Room.php @@ -51,6 +51,10 @@ class Room return proto().'://'.joinpath([$GLOBALS['CONFIG']['CDN'], 'thumbnail', $this->getStream(), 'thumb.jpeg']); } + public function getPoster() { + return proto().'://'.joinpath([$GLOBALS['CONFIG']['CDN'], 'thumbnail', $this->getStream(), 'poster.jpeg']); + } + public function getLink() { return joinpath([$this->getConference()->getSlug(), $this->getSlug()]).url_params(); } @@ -248,7 +252,7 @@ class Room public function getSelectionNames() { - $selections = array(); + $selections = array('hd'); if($this->hasDash()) $selections[] = 'dash'; |