summaryrefslogtreecommitdiffstats
path: root/application/models/Client.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/Client.php')
-rw-r--r--application/models/Client.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/application/models/Client.php b/application/models/Client.php
index a63e8ba..e8108ef 100644
--- a/application/models/Client.php
+++ b/application/models/Client.php
@@ -16,6 +16,7 @@ class Application_Model_Client
protected $_groupID;
protected $_macadress;
protected $_hardwarehash;
+ protected $_created;
public function __construct(array $options = null)
{
@@ -91,6 +92,15 @@ class Application_Model_Client
$this->_hardwarehash = $_hardwarehash;
return $this;
}
+ public function getCreated()
+ {
+ return $this->_created;
+ }
+ public function setCreated($_created)
+ {
+ $this->_created = $_created;
+ return $this;
+ }
/**
* Returns current data as associative array using ReflectionClass
*