diff options
| author | michael pereira | 2011-03-04 03:10:53 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-04 03:10:53 +0100 |
| commit | cd5f39054796ffe8cdda493d472d302a4de9e768 (patch) | |
| tree | 517ee81c31809317e36bfd1141dfdb952e021d89 /application/models/RoleMapper.php | |
| parent | fixing git (diff) | |
| download | pbs2-cd5f39054796ffe8cdda493d472d302a4de9e768.tar.gz pbs2-cd5f39054796ffe8cdda493d472d302a4de9e768.tar.xz pbs2-cd5f39054796ffe8cdda493d472d302a4de9e768.zip | |
Mapper mit neuer delete function
Diffstat (limited to 'application/models/RoleMapper.php')
| -rw-r--r-- | application/models/RoleMapper.php | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/application/models/RoleMapper.php b/application/models/RoleMapper.php index 2b1d658..da8d73a 100644 --- a/application/models/RoleMapper.php +++ b/application/models/RoleMapper.php @@ -35,10 +35,19 @@ class Application_Model_RoleMapper $data = array('roleID'=> $role->getID() ,'groupID'=> $role->getGroupID() ,'title'=> $role->getTitle() ,'description'=> $role->getDescription() ); if (null === ($id = $role->getID()) ) { - unset($data['id']); + unset($data['roleID']); $this->getDbTable()->insert($data); } else { - $this->getDbTable()->update($data, array('id = ?' => $id)); + $this->getDbTable()->update($data, array('roleID = ?' => $id)); + } + } + + public function delete(Application_Model_Role $role) + { + if (null === ($id = $role->getID()) ) { + return; + } else { + $this->getDbTable()->delete(array('roleID = ?' => $id)); } } |
