summaryrefslogtreecommitdiffstats
path: root/application/models/BootOs.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/BootOs.php')
-rw-r--r--application/models/BootOs.php60
1 files changed, 55 insertions, 5 deletions
diff --git a/application/models/BootOs.php b/application/models/BootOs.php
index bab23db..f098592 100644
--- a/application/models/BootOs.php
+++ b/application/models/BootOs.php
@@ -3,17 +3,22 @@
class Application_Model_BootOs
{
protected $_bootosID;
- protected $_configID;
protected $_groupID;
protected $_membershipID;
protected $_title;
protected $_path_init;
protected $_path_kernel;
+ protected $_path_config;
protected $_defaultkcl;
protected $_created;
protected $_description;
protected $_expires;
protected $_public;
+ protected $_source;
+ protected $_distro;
+ protected $_distroversion;
+ protected $_shortname;
+ protected $_share;
public function __construct(array $options = null)
{
@@ -62,13 +67,13 @@ class Application_Model_BootOs
$this->_bootosID = $_bootosID;
return $this;
}
- public function getConfigID()
+ public function getPath_config()
{
- return $this->_configID;
+ return $this->_path_config;
}
- public function setConfigID($_configID)
+ public function setPath_config($_path_config)
{
- $this->_configID = $_configID;
+ $this->_path_config = $_path_config;
return $this;
}
public function getGroupID()
@@ -161,6 +166,51 @@ class Application_Model_BootOs
$this->_public = $_public;
return $this;
}
+ public function getSource()
+ {
+ return $this->_source;
+ }
+ public function setSource($_source)
+ {
+ $this->_source = $_source;
+ return $this;
+ }
+ public function getDistro()
+ {
+ return $this->_distro;
+ }
+ public function setDistro($_distro)
+ {
+ $this->_distro = $_distro;
+ return $this;
+ }
+ public function getDistroversion()
+ {
+ return $this->_distroversion;
+ }
+ public function setDistroversion($_distroversion)
+ {
+ $this->_distroversion = $_distroversion;
+ return $this;
+ }
+ public function getShortname()
+ {
+ return $this->_shortname;
+ }
+ public function setShortname($_shortname)
+ {
+ $this->_shortname = $_shortname;
+ return $this;
+ }
+ public function getShare()
+ {
+ return $this->_share;
+ }
+ public function setShare($_share)
+ {
+ $this->_share = $_share;
+ return $this;
+ }
/**
* Returns current data as associative array using ReflectionClass
*