diff options
| author | Simon | 2011-01-27 16:51:16 +0100 |
|---|---|---|
| committer | Simon | 2011-01-27 16:51:16 +0100 |
| commit | 2435bbaf5d5522c92b13144da2b747002c40a0d8 (patch) | |
| tree | cead91037b613eb3136fb51ce7eb3eb5139acb61 /application/models/BootIso.php | |
| parent | Schreibfehler korrigiert (diff) | |
| download | pbs2-2435bbaf5d5522c92b13144da2b747002c40a0d8.tar.gz pbs2-2435bbaf5d5522c92b13144da2b747002c40a0d8.tar.xz pbs2-2435bbaf5d5522c92b13144da2b747002c40a0d8.zip | |
updated
Diffstat (limited to 'application/models/BootIso.php')
| -rw-r--r-- | application/models/BootIso.php | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/application/models/BootIso.php b/application/models/BootIso.php index 1ceb71d..a9a88d8 100644 --- a/application/models/BootIso.php +++ b/application/models/BootIso.php @@ -2,6 +2,14 @@ class Application_Model_BootIso { + protected $_bootisoID + protected $_membershipID; + protected $_groupID; + protected $_serialnumber; + protected $_created; + protected $_expires; + protected $_public; + public function __construct(array $options = null) { if (is_array($options)) { @@ -39,5 +47,75 @@ class Application_Model_BootIso return $this; } + + public function get_membershipID() + { + return $this->_membershipID; + } + + public function set_membershipID($_membershipID) + { + $this->_membershipID = $_membershipID; + } + + public function get_groupID() + { + return $this->_groupID; + } + + public function set_groupID($_groupID) + { + $this->_groupID = $_groupID; + } + + public function get_serialnumber() + { + return $this->_serialnumber; + } + + public function set_serialnumber($_serialnumber) + { + $this->_serialnumber = $_serialnumber; + } + + public function get_created() + { + return $this->_created; + } + + public function set_created($_created) + { + $this->_created = $_created; + } + + public function get_expires() + { + return $this->_expires; + } + + public function set_expires($_expires) + { + $this->_expires = $_expires; + } + + public function get_public() + { + return $this->_public; + } + + public function set_public($_public) + { + $this->_public = $_public; + } + + public function get_bootisoID() + { + return $this->_bootisoID; + } + + public function set_bootisoID($_bootisoID) + { + $this->_bootisoID = $_bootisoID; + } } |
