summaryrefslogtreecommitdiffstats
path: root/application/models/Pool.php
diff options
context:
space:
mode:
authorSimon2011-03-18 09:59:02 +0100
committerSimon2011-03-18 09:59:02 +0100
commit56d0655309fb13e8a2b8bb86a54206b419c32d18 (patch)
tree8ffdf1cfc00eef35ec08d2310e62566df55508ce /application/models/Pool.php
parentPerson und Gruppen, Fehler korrigiert + Layout (diff)
downloadpbs2-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.php10
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;