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.php21
1 files changed, 20 insertions, 1 deletions
diff --git a/application/models/Config.php b/application/models/Config.php
index 8107705..1fbac0a 100644
--- a/application/models/Config.php
+++ b/application/models/Config.php
@@ -4,8 +4,10 @@ class Application_Model_Config
{
protected $_configID;
protected $_groupID;
+ protected $_membershipID;
protected $_title;
protected $_shellscript;
+ protected $_created;
public function __construct(array $options = null)
{
@@ -63,6 +65,15 @@ class Application_Model_Config
$this->_groupID = $_groupID;
return $this;
}
+ public function getMembershipID()
+ {
+ return $this->_membershipID;
+ }
+ public function setMembershipID($_membershipID)
+ {
+ $this->_membershipID = $_membershipID;
+ return $this;
+ }
public function getShellscript()
{
return $this->_shellscript;
@@ -81,7 +92,15 @@ class Application_Model_Config
$this->_title = $_title;
return $this;
}
-
+ public function getCreated()
+ {
+ return $this->_created;
+ }
+ public function setCreated($_created)
+ {
+ $this->_created = $_created;
+ return $this;
+ }
/**
* Returns current data as associative array using ReflectionClass