summaryrefslogtreecommitdiffstats
path: root/application/models/PreBoot.php
diff options
context:
space:
mode:
authormichael pereira2011-04-21 15:55:59 +0200
committermichael pereira2011-04-21 15:55:59 +0200
commit4d141b993337331b61945cc02c43cb15d89714e9 (patch)
tree38e42801af6fee086771eca48ff44d2b668f1986 /application/models/PreBoot.php
parentconfig fix (diff)
downloadpbs2-4d141b993337331b61945cc02c43cb15d89714e9.tar.gz
pbs2-4d141b993337331b61945cc02c43cb15d89714e9.tar.xz
pbs2-4d141b993337331b61945cc02c43cb15d89714e9.zip
Preboot gefixt
Diffstat (limited to 'application/models/PreBoot.php')
-rw-r--r--application/models/PreBoot.php23
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
*