From 54da4fa07b925badf406c8fae8daa48d26224d41 Mon Sep 17 00:00:00 2001 From: Björn Geiger Date: Thu, 22 Sep 2011 17:56:43 +0200 Subject: Repeat Optionen werden nun in der DB gespeichert, achtung DB Update --- application/models/Event.php | 47 +++++++++++++++++++++++++++++++++++++++----- 1 file changed, 42 insertions(+), 5 deletions(-) (limited to 'application/models/Event.php') diff --git a/application/models/Event.php b/application/models/Event.php index 76bb2dc..0b472ea 100755 --- a/application/models/Event.php +++ b/application/models/Event.php @@ -25,7 +25,10 @@ class Application_Model_Event protected $_pbs_bootmenuID; protected $_pbs_filterID; protected $_repeat; - protected $_repeatEnd; + protected $_repeattype; + protected $_repeatend; + protected $_repeatdate; + protected $_repeatings; protected $_immediate; protected $_running; protected $_runningtype; @@ -225,14 +228,48 @@ class Application_Model_Event return $this; } - public function getRepeatEnd() + public function getRepeattype() { - return $this->_repeatEnd; + return $this->_repeattype; } - public function setRepeatEnd($_repeatEnd) + public function setRepeattype($_repeattype) { - $this->_repeatEnd = $_repeatEnd; + $this->_repeattype = $__repeattype; + return $this; + } + + + public function getRepeatend() + { + return $this->_repeatend; + } + + public function setRepeatend($_repeatend) + { + $this->_repeatend = $_repeatend; + return $this; + } + + public function getRepeatdate() + { + return $this->_repeatdate; + } + + public function setRepeatdate($_repeatdate) + { + $this->_repeatdate = $_repeatdate; + return $this; + } + + public function getRepeatings() + { + return $this->_repeatings; + } + + public function setRepeatings($_repeatings) + { + $this->_repeatings = $_repeatings; return $this; } -- cgit v1.2.3-55-g7522