diff options
author | MaZderMind | 2015-03-30 21:18:42 +0200 |
---|---|---|
committer | MaZderMind | 2015-03-30 21:18:42 +0200 |
commit | 785e40eae22ab50c48cde894663fc6f70187bb2d (patch) | |
tree | 84b1a96584dfda868a1f9db9b04438ef906e7809 /model/Room.php | |
parent | fc4cf5793cbe6561347067eb7b25c60a6fc50f77 (diff) |
MVT Implementation of the schedule
Diffstat (limited to '')
-rw-r--r-- | model/Room.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/model/Room.php b/model/Room.php index f428d87..156576c 100644 --- a/model/Room.php +++ b/model/Room.php @@ -29,6 +29,10 @@ class Room extends ModelBase return $this->get('ROOMS.'.$this->getSlug().'.STREAM', $this->getSlug()); } + public function getScheduleName() { + return $this->get('ROOMS.'.$this->getSlug().'.SCHEDULE_NAME', $this->getSlug()); + } + public function getDisplay() { return $this->get('ROOMS.'.$this->getSlug().'.DISPLAY', $this->getSlug()); } |