summaryrefslogtreecommitdiffstats
path: root/application/models/BootMenu.php
diff options
context:
space:
mode:
authormichael pereira2011-03-06 20:12:36 +0100
committermichael pereira2011-03-06 20:12:36 +0100
commit0e017ebdc1edbbf230f0f0160f103c39ef675725 (patch)
treee7848e531d30a01145f2f98d8a3189ea6699c54d /application/models/BootMenu.php
parentConfig fertig (diff)
downloadpbs2-0e017ebdc1edbbf230f0f0160f103c39ef675725.tar.gz
pbs2-0e017ebdc1edbbf230f0f0160f103c39ef675725.tar.xz
pbs2-0e017ebdc1edbbf230f0f0160f103c39ef675725.zip
datenbank erweitert, BootMenu, Config fertig
Diffstat (limited to 'application/models/BootMenu.php')
-rw-r--r--application/models/BootMenu.php20
1 files changed, 15 insertions, 5 deletions
diff --git a/application/models/BootMenu.php b/application/models/BootMenu.php
index 09a5c0d..da4e4d1 100644
--- a/application/models/BootMenu.php
+++ b/application/models/BootMenu.php
@@ -4,8 +4,9 @@ class Application_Model_BootMenu
{
protected $_bootmenuID;
protected $_membershipID;
+ protected $_groupID;
protected $_title;
- protected $_time;
+ protected $_created;
public function __construct(array $options = null)
{
@@ -62,6 +63,15 @@ class Application_Model_BootMenu
$this->_membershipID = $_membershipID;
return $this;
}
+ public function getGroupID()
+ {
+ return $this->_groupID;
+ }
+ public function setGroupID($_groupID)
+ {
+ $this->_groupID = $_groupID;
+ return $this;
+ }
public function getTitle()
{
return $this->_title;
@@ -71,13 +81,13 @@ class Application_Model_BootMenu
$this->_title = $_title;
return $this;
}
- public function getTime()
+ public function getCreated()
{
- return $this->_time;
+ return $this->_created;
}
- public function setTime($_time)
+ public function setCreated($_created)
{
- $this->_time = $_time;
+ $this->_created = $_created;
return $this;
}
/**