From 521f0e2e1c94538fdce65a021144180f368364d9 Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Thu, 8 Dec 2016 22:38:46 +0100 Subject: add dash tab (with dummy content) --- model/Room.php | 10 ++++++++++ model/RoomTab.php | 3 +++ 2 files changed, 13 insertions(+) (limited to 'model') diff --git a/model/Room.php b/model/Room.php index df3d92c..3baa0cf 100644 --- a/model/Room.php +++ b/model/Room.php @@ -174,6 +174,10 @@ class Room extends ModelBase return $this->get('ROOMS.'.$this->getSlug().'.MUSIC'); } + public function hasDash() { + return $this->get('ROOMS.'.$this->getSlug().'.DASH'); + } + public function hasTranslation() { return $this->get('ROOMS.'.$this->getSlug().'.TRANSLATION'); } @@ -196,6 +200,9 @@ class Room extends ModelBase if($this->hasMusic()) $selections[] = 'music'; + if($this->hasDash()) + $selections[] = 'dash'; + return $selections; } @@ -214,6 +221,9 @@ class Room extends ModelBase if($this->hasMusic()) $tabs[] = 'music'; + if($this->hasDash()) + $tabs[] = 'dash'; + return $tabs; } diff --git a/model/RoomTab.php b/model/RoomTab.php index 16a8359..dfe6e84 100644 --- a/model/RoomTab.php +++ b/model/RoomTab.php @@ -35,6 +35,9 @@ class RoomTab case 'music': return 'Radio'; + case 'dash': + return 'DASH (beta)'; + default: return ucfirst($tab); } -- cgit v1.2.3