summaryrefslogtreecommitdiffstats
path: root/application/models/BootIso.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/BootIso.php')
-rw-r--r--application/models/BootIso.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/application/models/BootIso.php b/application/models/BootIso.php
index fe06947..e34c3b8 100644
--- a/application/models/BootIso.php
+++ b/application/models/BootIso.php
@@ -14,6 +14,7 @@ class Application_Model_BootIso
{
protected $_bootisoID;
protected $_title;
+ protected $_description;
protected $_prebootID;
protected $_membershipID;
protected $_groupID;
@@ -162,6 +163,15 @@ class Application_Model_BootIso
$this->_bootisoID = $_bootisoID;
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
*