summaryrefslogtreecommitdiffstats
path: root/application/models/Role.php
diff options
context:
space:
mode:
authorSimon2011-03-02 15:09:46 +0100
committerSimon2011-03-02 15:09:46 +0100
commit5d161755f849a2ec6b3ba80ea5690dd5c61f79d8 (patch)
treeff335f2e773f581512a135c3d3fbb141f55493bd /application/models/Role.php
parenteinricht script wegen mysql-pw geupdated (diff)
downloadpbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.tar.gz
pbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.tar.xz
pbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.zip
Die Models geändert da kein return der Objekte angegeben war && FilterController
Diffstat (limited to 'application/models/Role.php')
-rw-r--r--application/models/Role.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/application/models/Role.php b/application/models/Role.php
index d00b93f..0503627 100644
--- a/application/models/Role.php
+++ b/application/models/Role.php
@@ -52,6 +52,7 @@ class Application_Model_Role
public function setID($_roleID)
{
$this->_roleID = $_roleID;
+ return $this;
}
public function getGroupID()
{
@@ -60,6 +61,7 @@ class Application_Model_Role
public function setGroupID($_groupID)
{
$this->_groupID = $_groupID;
+ return $this;
}
public function getTitle()
{
@@ -68,6 +70,7 @@ class Application_Model_Role
public function setTitle($_title)
{
$this->_title = $_title;
+ return $this;
}
public function getDescription()
{
@@ -76,6 +79,7 @@ class Application_Model_Role
public function setDescription($_description)
{
$this->_description = $_description;
+ return $this;
}
}