summaryrefslogtreecommitdiffstats
path: root/application/models/BootIso.php
diff options
context:
space:
mode:
authorMichael Neves2012-01-26 15:56:42 +0100
committerMichael Neves2012-01-26 15:56:42 +0100
commitdd8dbbcdde46419dd1ad193a8170cde5ca24630b (patch)
tree501f81c7e1dfe00d420175f32bbb36bc39ece3e6 /application/models/BootIso.php
parentAdded Preboottype Model, changed bootiso and preboot model (diff)
downloadpbs2-dd8dbbcdde46419dd1ad193a8170cde5ca24630b.tar.gz
pbs2-dd8dbbcdde46419dd1ad193a8170cde5ca24630b.tar.xz
pbs2-dd8dbbcdde46419dd1ad193a8170cde5ca24630b.zip
Preboot Serial and type in View
Diffstat (limited to 'application/models/BootIso.php')
-rw-r--r--application/models/BootIso.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/application/models/BootIso.php b/application/models/BootIso.php
index e1c9bd8..967a612 100644
--- a/application/models/BootIso.php
+++ b/application/models/BootIso.php
@@ -16,7 +16,7 @@ class Application_Model_BootIso {
protected $_description;
protected $_membershipID;
protected $_groupID;
- protected $_typeID;
+ protected $_preboottypeID;
protected $_serialnumber;
protected $_created;
protected $_expires;
@@ -88,11 +88,11 @@ class Application_Model_BootIso {
return $this;
}
- public function getTypeID() {
- return $this->_typeID;
+ public function getPreBootTypeID() {
+ return $this->_preboottypeID;
}
- public function setTypeID($_typeID) {
- $this->_typeID = $_typeID;
+ public function setPreBootTypeID($_preboottypeID) {
+ $this->_preboottypeID = $_preboottypeID;
return $this;
}