summaryrefslogtreecommitdiffstats
path: root/application/models/Event.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/Event.php')
-rwxr-xr-xapplication/models/Event.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/application/models/Event.php b/application/models/Event.php
index d14bbb9..7170fc1 100755
--- a/application/models/Event.php
+++ b/application/models/Event.php
@@ -34,6 +34,7 @@ class Application_Model_Event
protected $_runningtype;
protected $_note;
protected $_created;
+ protected $_force;
public function __construct(array $options = null)
{
@@ -349,5 +350,15 @@ class Application_Model_Event
$this->_created = $_created;
return $this;
}
-}
+ public function getForce()
+ {
+ return $this->_force;
+ }
+
+ public function setForce($_force)
+ {
+ $this->_force = $_force;
+ return $this;
+ }
+} \ No newline at end of file