diff options
| author | Simon | 2011-04-21 14:04:59 +0200 |
|---|---|---|
| committer | Simon | 2011-04-21 14:04:59 +0200 |
| commit | b341e58395139a49a95175e0bdc9e3f0458f675d (patch) | |
| tree | fd1ebb785e32de46fa40902a2c51ca62e44f1654 /application/models/BootIso.php | |
| parent | Fehler in sql korrigiert (diff) | |
| parent | Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff) | |
| download | pbs2-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.php | 10 |
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 * |
