summaryrefslogtreecommitdiffstats
path: root/application/models/BootIso.php
diff options
context:
space:
mode:
authorSimon2011-04-21 14:04:59 +0200
committerSimon2011-04-21 14:04:59 +0200
commitb341e58395139a49a95175e0bdc9e3f0458f675d (patch)
treefd1ebb785e32de46fa40902a2c51ca62e44f1654 /application/models/BootIso.php
parentFehler in sql korrigiert (diff)
parentMerge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff)
downloadpbs2-b341e58395139a49a95175e0bdc9e3f0458f675d.tar.gz
pbs2-b341e58395139a49a95175e0bdc9e3f0458f675d.tar.xz
pbs2-b341e58395139a49a95175e0bdc9e3f0458f675d.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
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
*