summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn Geiger2011-08-22 12:40:00 +0200
committerBjörn Geiger2011-08-22 12:40:00 +0200
commitdcc038d94a9fbc283ba7bcc41bc4404515ec8744 (patch)
tree46e57f0f3344ad909355147da115a3302fe432a5
parentminor (diff)
downloadpoolctrl-dcc038d94a9fbc283ba7bcc41bc4404515ec8744.tar.gz
poolctrl-dcc038d94a9fbc283ba7bcc41bc4404515ec8744.tar.xz
poolctrl-dcc038d94a9fbc283ba7bcc41bc4404515ec8744.zip
kleine Korrekutr
-rw-r--r--application/models/Eventreport.php22
1 files changed, 17 insertions, 5 deletions
diff --git a/application/models/Eventreport.php b/application/models/Eventreport.php
index 7b72ab0..ff94a09 100644
--- a/application/models/Eventreport.php
+++ b/application/models/Eventreport.php
@@ -13,7 +13,8 @@
class Application_Model_Eventreport
{
protected $_reportID;
- protected $_report;
+ protected $_result;
+ protected $_errors;
protected $_type;
protected $_eventID;
@@ -99,14 +100,25 @@ class Application_Model_Eventreport
return $this;
}
- public function getReport()
+ public function getResult()
{
- return $this->_report;
+ return $this->_result;
}
- public function setReport($_report)
+ public function setResult($_result)
{
- $this->_report = $_report;
+ $this->_result = $_result;
+ return $this;
+ }
+
+ public function getErrors()
+ {
+ return $this->_errors;
+ }
+
+ public function setErrors($_errors)
+ {
+ $this->_errors = $_errors;
return $this;
}