diff options
Diffstat (limited to 'application/models/PreBoot.php')
| -rw-r--r-- | application/models/PreBoot.php | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/application/models/PreBoot.php b/application/models/PreBoot.php index 57a622d..34b4346 100644 --- a/application/models/PreBoot.php +++ b/application/models/PreBoot.php @@ -14,11 +14,12 @@ class Application_Model_PreBoot { protected $_prebootID; protected $_title; - protected $_path_preboot; protected $_membershipID; protected $_groupID; protected $_source; protected $_created; + protected $_description; + public function __construct(array $options = null) @@ -98,16 +99,6 @@ class Application_Model_PreBoot $this->_title = $_title; return $this; } - public function getPath_preboot() - { - return $this->_path_preboot; - } - - public function setPath_preboot($_path_preboot) - { - $this->_path_preboot = $_path_preboot; - return $this; - } public function getCreated() { return $this->_created; @@ -128,7 +119,15 @@ class Application_Model_PreBoot $this->_source = $_source; return $this; } - + public function getDescription() + { + return $this->_description; + } + public function setDescription($_description) + { + $this->_description = $_description; + return $this; + } /** * Returns current data as associative array using ReflectionClass * |
