diff options
| author | michael pereira | 2011-04-18 02:32:00 +0200 |
|---|---|---|
| committer | michael pereira | 2011-04-18 02:32:00 +0200 |
| commit | 12692bde37c7793aa9a71433b9ffc575139c9ee1 (patch) | |
| tree | d458a5a09d52f5cb5be1f38be7410b9d5287fc77 /application/models/BootOs.php | |
| parent | Pbs_Graph bei Minuswerten wird nichts eingefärbt (diff) | |
| download | pbs2-12692bde37c7793aa9a71433b9ffc575139c9ee1.tar.gz pbs2-12692bde37c7793aa9a71433b9ffc575139c9ee1.tar.xz pbs2-12692bde37c7793aa9a71433b9ffc575139c9ee1.zip | |
Ticket 214 API-Daten zu Bootos hinzugefügt
Diffstat (limited to 'application/models/BootOs.php')
| -rw-r--r-- | application/models/BootOs.php | 60 |
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 * |
