diff options
| author | michael pereira | 2011-04-20 18:49:49 +0200 |
|---|---|---|
| committer | michael pereira | 2011-04-20 18:49:49 +0200 |
| commit | cc3660add480ac1dc217d7f853b325db7d6ec7d0 (patch) | |
| tree | 8056c87777d806c613a607c3f479ce07475b5db6 /application/models/Client.php | |
| parent | API + Fixes (diff) | |
| parent | Url für Config gekürzt (diff) | |
| download | pbs2-cc3660add480ac1dc217d7f853b325db7d6ec7d0.tar.gz pbs2-cc3660add480ac1dc217d7f853b325db7d6ec7d0.tar.xz pbs2-cc3660add480ac1dc217d7f853b325db7d6ec7d0.zip | |
merges
Diffstat (limited to 'application/models/Client.php')
| -rw-r--r-- | application/models/Client.php | 10 |
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 * |
