summaryrefslogtreecommitdiffstats
path: root/application/models/Event.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-09-08 14:54:50 +0200
committerBjörn Geiger2011-09-08 14:54:50 +0200
commit53befebf24d06b8c976780cc82e0513a8a4b5011 (patch)
tree10d6c9b9ed11b7e66ace109ed0ba35a05d22778f /application/models/Event.php
parentMerge branch 'master' of git.openslx.org:lsfks/projekte/poolctrl (diff)
downloadpoolctrl-53befebf24d06b8c976780cc82e0513a8a4b5011.tar.gz
poolctrl-53befebf24d06b8c976780cc82e0513a8a4b5011.tar.xz
poolctrl-53befebf24d06b8c976780cc82e0513a8a4b5011.zip
verschiedene Änderungen + DB Update
Diffstat (limited to 'application/models/Event.php')
-rw-r--r--application/models/Event.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/application/models/Event.php b/application/models/Event.php
index 9033824..7f20d10 100644
--- a/application/models/Event.php
+++ b/application/models/Event.php
@@ -25,6 +25,7 @@ class Application_Model_Event
protected $_pbs_bootmenuID;
protected $_pbs_filterID;
protected $_repeat;
+ protected $_repeatEnd;
protected $_immediate;
protected $_running;
protected $_runningtype;
@@ -223,6 +224,17 @@ class Application_Model_Event
return $this;
}
+ public function getRepeatEnd()
+ {
+ return $this->_repeatEnd;
+ }
+
+ public function setRepeatEnd($_repeatEnd)
+ {
+ $this->_repeatEnd = $_repeatEnd;
+ return $this;
+ }
+
public function getImmediate()
{
return $this->_immediate;