summaryrefslogtreecommitdiffstats
path: root/application/models/Config.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/Config.php')
-rw-r--r--application/models/Config.php39
1 files changed, 29 insertions, 10 deletions
diff --git a/application/models/Config.php b/application/models/Config.php
index 5e3a7eb..3b609af 100644
--- a/application/models/Config.php
+++ b/application/models/Config.php
@@ -16,7 +16,9 @@ class Application_Model_Config
protected $_groupID;
protected $_membershipID;
protected $_title;
- protected $_shellscript;
+ protected $_description;
+ protected $_visible;
+ protected $_bootosID;
protected $_created;
public function __construct(array $options = null)
@@ -84,15 +86,6 @@ class Application_Model_Config
$this->_membershipID = $_membershipID;
return $this;
}
- public function getShellscript()
- {
- return $this->_shellscript;
- }
- public function setShellscript($_shellscript)
- {
- $this->_shellscript = $_shellscript;
- return $this;
- }
public function getTitle()
{
return $this->_title;
@@ -111,6 +104,32 @@ class Application_Model_Config
$this->_created = $_created;
return $this;
}
+ public function getDescription()
+ {
+ return $this->_description;
+ }
+ public function setDescription($_description)
+ {
+ $this->_description = $_description;
+ return $this;
+ }
+ public function getVisible()
+ {
+ return $this->_visible;
+ }
+ public function setVisible($_visible)
+ {
+ $this->_visible = $_visible;
+ return $this;
+ }
+ public function getBootosID()
+ {
+ return $this->_bootosID;
+ }
+ public function setBootosID($_bootosID)
+ {
+ return $this;
+ }
/**
* Returns current data as associative array using ReflectionClass