summaryrefslogtreecommitdiffstats
path: root/application/models/PoolEntries.php
diff options
context:
space:
mode:
authorSimon2011-03-07 13:57:04 +0100
committerSimon2011-03-07 13:57:04 +0100
commit5688b750744f8568414dc745961747e5629bd194 (patch)
treed8821314ada6f422d3d362666e7060af502709a3 /application/models/PoolEntries.php
parentview variable in application.ini hinzugefügt (diff)
downloadpbs2-5688b750744f8568414dc745961747e5629bd194.tar.gz
pbs2-5688b750744f8568414dc745961747e5629bd194.tar.xz
pbs2-5688b750744f8568414dc745961747e5629bd194.zip
Pool actions zum bearbeiten von Pools hinzugefügt
Diffstat (limited to 'application/models/PoolEntries.php')
-rw-r--r--application/models/PoolEntries.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/application/models/PoolEntries.php b/application/models/PoolEntries.php
index 31caf5f..102dc9d 100644
--- a/application/models/PoolEntries.php
+++ b/application/models/PoolEntries.php
@@ -2,6 +2,7 @@
class Application_Model_PoolEntries
{
+ protected $_poolentriesID;
protected $_poolID;
protected $_clientID;
@@ -42,7 +43,15 @@ class Application_Model_PoolEntries
return $this;
}
-
+ public function getID()
+ {
+ return $this->_poolentriesID;
+ }
+ public function setID($_poolentriesID)
+ {
+ $this->_poolentriesID = $_poolentriesID;
+ return $this;
+ }
public function getPoolID()
{
return $this->_poolID;