summaryrefslogtreecommitdiffstats
path: root/application/models/Event.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/Event.php')
-rwxr-xr-xapplication/models/Event.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/application/models/Event.php b/application/models/Event.php
index 7f20d10..76bb2dc 100755
--- a/application/models/Event.php
+++ b/application/models/Event.php
@@ -30,6 +30,7 @@ class Application_Model_Event
protected $_running;
protected $_runningtype;
protected $_note;
+ protected $_created;
public function __construct(array $options = null)
{
@@ -300,5 +301,16 @@ class Application_Model_Event
$this->_runningtype = $_runningtype;
return $this;
}
+
+ public function getCreated()
+ {
+ return $this->_created;
+ }
+
+ public function setCreated($_created)
+ {
+ $this->_created = $_created;
+ return $this;
+ }
}