diff options
| author | michael pereira | 2011-04-08 03:21:00 +0200 |
|---|---|---|
| committer | michael pereira | 2011-04-08 03:21:00 +0200 |
| commit | 906ef8eff141f91bf1628d844db357ca0e29abf6 (patch) | |
| tree | 120f879d217758145db760261d451543c4230486 /application/models/BootMenu.php | |
| parent | acl merge (diff) | |
| download | pbs2-906ef8eff141f91bf1628d844db357ca0e29abf6.tar.gz pbs2-906ef8eff141f91bf1628d844db357ca0e29abf6.tar.xz pbs2-906ef8eff141f91bf1628d844db357ca0e29abf6.zip | |
defaultbootmenu fertig
Diffstat (limited to 'application/models/BootMenu.php')
| -rw-r--r-- | application/models/BootMenu.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/application/models/BootMenu.php b/application/models/BootMenu.php index da4e4d1..c25dad7 100644 --- a/application/models/BootMenu.php +++ b/application/models/BootMenu.php @@ -7,6 +7,7 @@ class Application_Model_BootMenu protected $_groupID; protected $_title; protected $_created; + protected $_defaultbootmenu; public function __construct(array $options = null) { @@ -90,6 +91,15 @@ class Application_Model_BootMenu $this->_created = $_created; return $this; } + public function getDefaultbootmenu() + { + return $this->_defaultbootmenu; + } + public function setDefaultbootmenu($_defaultbootmenu) + { + $this->_defaultbootmenu = $_defaultbootmenu; + return $this; + } /** * Returns current data as associative array using ReflectionClass * |
