summaryrefslogtreecommitdiffstats
path: root/application/models/Client.php
diff options
context:
space:
mode:
authorSimon2011-03-16 14:42:40 +0100
committerSimon2011-03-16 14:42:40 +0100
commit29224a1ccc162e457589210168c38529e81a572d (patch)
treef049b58ed09cd4bd9de2e3fe882593b75b16cae4 /application/models/Client.php
parentMerge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff)
downloadpbs2-29224a1ccc162e457589210168c38529e81a572d.tar.gz
pbs2-29224a1ccc162e457589210168c38529e81a572d.tar.xz
pbs2-29224a1ccc162e457589210168c38529e81a572d.zip
Helper initialisiert, ClientController geadded
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 a27c3b3..3c2b050 100644
--- a/application/models/Client.php
+++ b/application/models/Client.php
@@ -3,6 +3,7 @@
class Application_Model_Client
{
protected $_clientID;
+ protected $_groupID;
protected $_macadress;
protected $_hardwarehash;
@@ -53,6 +54,15 @@ class Application_Model_Client
$this->_clientID = $_clientID;
return $this;
}
+ public function getGroupID()
+ {
+ return $this->_groupID;
+ }
+ public function setGroupID($_groupID)
+ {
+ $this->_groupID = $_groupID;
+ return $this;
+ }
public function getMacadress()
{
return $this->_macadress;