summaryrefslogtreecommitdiffstats
path: root/application/models/Event.php
diff options
context:
space:
mode:
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;
}