summaryrefslogtreecommitdiffstats
path: root/application/models/Event.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-08-19 00:45:34 +0200
committerBjörn Geiger2011-08-19 00:45:34 +0200
commit74d2e51da636f8ec981a0b004efb7e1f04b08e08 (patch)
treec62968896bfc4fb4cb6715b17894c58bdfba9418 /application/models/Event.php
parentmore ps-logic (diff)
downloadpoolctrl-74d2e51da636f8ec981a0b004efb7e1f04b08e08.tar.gz
poolctrl-74d2e51da636f8ec981a0b004efb7e1f04b08e08.tar.xz
poolctrl-74d2e51da636f8ec981a0b004efb7e1f04b08e08.zip
verschiedene Datenbankänderungen
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 b69412e..33a470e 100644
--- a/application/models/Event.php
+++ b/application/models/Event.php
@@ -26,6 +26,7 @@ class Application_Model_Event
protected $_pbs_filterID;
protected $_repeat;
protected $_immediate;
+ protected $_running;
protected $_note;
public function __construct(array $options = null)
@@ -264,5 +265,16 @@ class Application_Model_Event
$this->_pbs_filterID = $_pbs_filterID;
return $this;
}
+
+ public function getRunning()
+ {
+ return $this->_running;
+ }
+
+ public function setRunning($_running)
+ {
+ $this->_running = $_running;
+ return $this;
+ }
}