diff options
| author | Simon | 2011-03-07 13:57:04 +0100 |
|---|---|---|
| committer | Simon | 2011-03-07 13:57:04 +0100 |
| commit | 5688b750744f8568414dc745961747e5629bd194 (patch) | |
| tree | d8821314ada6f422d3d362666e7060af502709a3 /application/models/PoolEntries.php | |
| parent | view variable in application.ini hinzugefügt (diff) | |
| download | pbs2-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.php | 11 |
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; |
