aboutsummaryrefslogtreecommitdiff
path: root/model/Room.php
diff options
context:
space:
mode:
authorAnton Schubert2020-05-02 22:34:48 +0200
committerAnton Schubert2020-05-02 22:34:48 +0200
commit6ca102c77d0d2e3e5da962dbf69596af866d039f (patch)
tree21b39a6eb6db9197c835b96e8f703f76a27f2f01 /model/Room.php
parentaec18c42ef72bf93dc4e931dbca4ade19db5d9fb (diff)
remove legacy video tab
Diffstat (limited to '')
-rw-r--r--model/Room.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/model/Room.php b/model/Room.php
index 897bcbd..ad4d58d 100644
--- a/model/Room.php
+++ b/model/Room.php
@@ -184,10 +184,6 @@ class Room
return $this->getConference()->get('ROOMS.'.$this->getSlug().'.HD_VIDEO');
}
- public function hasVideo() {
- return $this->hasSdVideo() || $this->hasHdVideo();
- }
-
public function hasAudio() {
return $this->getConference()->get('ROOMS.'.$this->getSlug().'.AUDIO');
}
@@ -262,12 +258,6 @@ class Room
if($this->hasMusic())
$selections[] = 'music';
- if($this->hasHdVideo())
- $selections[] = 'hd';
-
- if($this->hasSdVideo())
- $selections[] = 'sd';
-
if($this->hasSlides())
$selections[] = 'slides';
@@ -291,9 +281,6 @@ class Room
if($this->hasMusic())
$tabs[] = 'music';
- if($this->hasVideo())
- $tabs[] = 'video';
-
if($this->hasSlides())
$tabs[] = 'slides';