summaryrefslogtreecommitdiffstats
path: root/application/models/BootIso.php
diff options
context:
space:
mode:
authorMichael Neves2012-01-26 14:55:59 +0100
committerMichael Neves2012-01-26 14:55:59 +0100
commit780cacfe78e3191e09328f15bc6e4687ac83b0a5 (patch)
tree8ef5fc76016e1ad67a170d76240f5dce6bc1ef3e /application/models/BootIso.php
parentadjusted Bootiso in pbs.sql and pbs_newdata.sql (diff)
downloadpbs2-780cacfe78e3191e09328f15bc6e4687ac83b0a5.tar.gz
pbs2-780cacfe78e3191e09328f15bc6e4687ac83b0a5.tar.xz
pbs2-780cacfe78e3191e09328f15bc6e4687ac83b0a5.zip
Added Preboottype Model, changed bootiso and preboot model
Diffstat (limited to 'application/models/BootIso.php')
-rw-r--r--application/models/BootIso.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/application/models/BootIso.php b/application/models/BootIso.php
index 8041fa2..e1c9bd8 100644
--- a/application/models/BootIso.php
+++ b/application/models/BootIso.php
@@ -14,9 +14,9 @@ class Application_Model_BootIso {
protected $_bootisoID;
protected $_title;
protected $_description;
- protected $_prebootID;
protected $_membershipID;
protected $_groupID;
+ protected $_typeID;
protected $_serialnumber;
protected $_created;
protected $_expires;
@@ -87,22 +87,22 @@ class Application_Model_BootIso {
$this->_title = $_title;
return $this;
}
- public function getPrebootID() {
- return $this->_prebootID;
+
+ public function getTypeID() {
+ return $this->_typeID;
}
- public function setPrebootID($_prebootID) {
- $this->_prebootID = $_prebootID;
- return $this;
+ public function setTypeID($_typeID) {
+ $this->_typeID = $_typeID;
+ return $this;
}
+
public function getSerialnumber() {
return $this->_serialnumber;
}
-
public function setSerialnumber($_serialnumber) {
$this->_serialnumber = $_serialnumber;
return $this;
}
-
public function getCreated() {
return $this->_created;
}