summaryrefslogtreecommitdiffstats
path: root/application/models/Event.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-09-14 13:05:10 +0200
committerBjörn Geiger2011-09-14 13:05:10 +0200
commit07383f1d8525ec18ed1e577b8f976bd0c26c294b (patch)
tree8d0116660aa1075df39c7f8b8a9ae9f70955ee3e /application/models/Event.php
parentkleine Korrektur (diff)
downloadpoolctrl-07383f1d8525ec18ed1e577b8f976bd0c26c294b.tar.gz
poolctrl-07383f1d8525ec18ed1e577b8f976bd0c26c294b.tar.xz
poolctrl-07383f1d8525ec18ed1e577b8f976bd0c26c294b.zip
show Eventreports, Datenbankänderung
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;
+ }
}