diff options
| author | Simon | 2011-03-18 09:59:02 +0100 |
|---|---|---|
| committer | Simon | 2011-03-18 09:59:02 +0100 |
| commit | 56d0655309fb13e8a2b8bb86a54206b419c32d18 (patch) | |
| tree | 8ffdf1cfc00eef35ec08d2310e62566df55508ce /application/models/Pool.php | |
| parent | Person und Gruppen, Fehler korrigiert + Layout (diff) | |
| download | pbs2-56d0655309fb13e8a2b8bb86a54206b419c32d18.tar.gz pbs2-56d0655309fb13e8a2b8bb86a54206b419c32d18.tar.xz pbs2-56d0655309fb13e8a2b8bb86a54206b419c32d18.zip | |
Datenbank update, PoolController
Diffstat (limited to 'application/models/Pool.php')
| -rw-r--r-- | application/models/Pool.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/application/models/Pool.php b/application/models/Pool.php index 11d5a03..f312b19 100644 --- a/application/models/Pool.php +++ b/application/models/Pool.php @@ -3,6 +3,7 @@ class Application_Model_Pool { protected $_poolID; + protected $_groupID; protected $_title; protected $_description; protected $_location; @@ -54,6 +55,15 @@ class Application_Model_Pool $this->_poolID = $_poolID; return $this; } + public function getGroupID() + { + return $this->_groupID; + } + public function setGroupID($_groupID) + { + $this->_groupID = $_groupID; + return $this; + } public function getTitle() { return $this->_title; |
