aboutsummaryrefslogtreecommitdiff
path: root/model
diff options
context:
space:
mode:
authorIke2019-10-11 23:08:02 +0200
committerIke2019-10-11 23:09:14 +0200
commit06583183ab51094b3bf38ec34503f907047c2fcb (patch)
tree161b137dd7004c2bf6343af8b7d89b0e97fb27b6 /model
parent3b3453fcc331ad477651ca83e4144188bad1cfd8 (diff)
Allow conference to override the not-started-yet page contents
Diffstat (limited to 'model')
-rw-r--r--model/Conference.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/model/Conference.php b/model/Conference.php
index 099e3ce..26bcc8b 100644
--- a/model/Conference.php
+++ b/model/Conference.php
@@ -188,6 +188,13 @@ class Conference extends ModelBase
return $this->get('CONFERENCE.FOOTER_HTML');
}
+ public function hasNotStartedHtml() {
+ return $this->has('CONFERENCE.NOT_STARTED_HTML');
+ }
+ public function getNotStartedHtml() {
+ return $this->get('CONFERENCE.NOT_STARTED_HTML');
+ }
+
public function getRooms()
{