diff options
| author | michael pereira | 2011-03-29 11:49:22 +0200 |
|---|---|---|
| committer | michael pereira | 2011-03-29 11:49:22 +0200 |
| commit | bb6cbedc2c76c370febb0472db6e70f2415e80f0 (patch) | |
| tree | 4faff5cbb78b57ec621e5584d073f53b00774d26 /application/models/Right.php | |
| parent | Resource Controller fertig (diff) | |
| parent | Shortcut und RightCategoryID in Rightmapper hinzugefügt (diff) | |
| download | pbs2-bb6cbedc2c76c370febb0472db6e70f2415e80f0.tar.gz pbs2-bb6cbedc2c76c370febb0472db6e70f2415e80f0.tar.xz pbs2-bb6cbedc2c76c370febb0472db6e70f2415e80f0.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/models/Right.php')
| -rw-r--r-- | application/models/Right.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/application/models/Right.php b/application/models/Right.php index 874453c..2f49bd9 100644 --- a/application/models/Right.php +++ b/application/models/Right.php @@ -4,6 +4,7 @@ class Application_Model_Right { protected $_rightID; protected $_rightcategoryID; + protected $_shortcut; protected $_title; protected $_description; @@ -62,6 +63,15 @@ class Application_Model_Right { $this->_rightID = $_rightcategoryID; return $this; + } + public function getShortcut() + { + return $this->_shortcut; + } + public function setShortcut($_shortcut) + { + $this->_shortcut = $_shortcut; + return $this; } public function getTitle() { |
