summaryrefslogtreecommitdiffstats
path: root/application/models/Event.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-09-22 17:56:43 +0200
committerBjörn Geiger2011-09-22 17:56:43 +0200
commit54da4fa07b925badf406c8fae8daa48d26224d41 (patch)
treee311d0719496a09762267bcec56629e502b57d47 /application/models/Event.php
parentweitere Korrektur (diff)
downloadpoolctrl-54da4fa07b925badf406c8fae8daa48d26224d41.tar.gz
poolctrl-54da4fa07b925badf406c8fae8daa48d26224d41.tar.xz
poolctrl-54da4fa07b925badf406c8fae8daa48d26224d41.zip
Repeat Optionen werden nun in der DB gespeichert, achtung DB Update
Diffstat (limited to 'application/models/Event.php')
-rwxr-xr-xapplication/models/Event.php47
1 files changed, 42 insertions, 5 deletions
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;
}