diff options
| author | michael pereira | 2011-04-21 14:03:56 +0200 |
|---|---|---|
| committer | michael pereira | 2011-04-21 14:03:56 +0200 |
| commit | 583ccfa017f2a57776d70cf1b80a7dbb1228124c (patch) | |
| tree | c58419423f503e31ec06b547e6c2ec4fbe554109 /application/models/BootIso.php | |
| parent | merges (diff) | |
| download | pbs2-583ccfa017f2a57776d70cf1b80a7dbb1228124c.tar.gz pbs2-583ccfa017f2a57776d70cf1b80a7dbb1228124c.tar.xz pbs2-583ccfa017f2a57776d70cf1b80a7dbb1228124c.zip | |
updates raus
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 * |
