From 780cacfe78e3191e09328f15bc6e4687ac83b0a5 Mon Sep 17 00:00:00 2001 From: Michael Neves Date: Thu, 26 Jan 2012 14:55:59 +0100 Subject: Added Preboottype Model, changed bootiso and preboot model --- application/models/PreBootTypeMapper.php | 140 +++++++++++++++++++++++++++++++ 1 file changed, 140 insertions(+) create mode 100644 application/models/PreBootTypeMapper.php (limited to 'application/models/PreBootTypeMapper.php') diff --git a/application/models/PreBootTypeMapper.php b/application/models/PreBootTypeMapper.php new file mode 100644 index 0000000..03bed3b --- /dev/null +++ b/application/models/PreBootTypeMapper.php @@ -0,0 +1,140 @@ + $v) { + if($v != null) + { $where2[] = "$k = '$v'"; } + else + { $where2[] = "$k IS NULL"; } + } + $where = implode(" AND " , $where2); + + try { + $db = Zend_Db_Table::getDefaultAdapter(); + $select = $this->getDbTable()->select() + ->from($this->_dbTable) + ->where($where); + + if(is_array($order)) { + foreach ($order as $k => $v) + $a[] = "$k $v"; + $select->order($a); + } + + $stmt = $select->query(); + $result = $stmt->fetchAll(); + + if(!$array) { + $entries = array(); + foreach ($result as $row) { + $entry = new Application_Model_PreBootType($row); + $entry->setID($row['preboottypeID']); + $entries[] = $entry; + } + return $entries; + } else { + return $result; + } + + } catch (Zend_Exception $e) { + echo "Error message 2: " . $e->getMessage() . "\n"; + } + } + public function setDbTable($dbTable) { + if (is_string($dbTable)) { + $dbTable = new $dbTable(); + } + + if (!$dbTable instanceof Zend_Db_Table_Abstract) { + throw new Exception('Invalid table data gateway provided'); + } + + $this->_dbTable = $dbTable; + + return $this; + } + + public function getDbTable() { + if (null === $this->_dbTable) { + $this->setDbTable('Application_Model_DbTable_PreBootType'); + } + + return $this->_dbTable; + } + + public function save(Application_Model_PreBootType $preboottype) { + + $data = array('preboottypeID' => $preboottype->getID() , 'name' => $preboottype->getName() ); + + if (null === ($id = $preboottype->getID()) ) { + unset($data['preboottypeID']); + $this->getDbTable()->insert($data); + } else { + $this->getDbTable()->update($data, array('preboottypeID = ?' => $id)); + } + } + + public function delete(Application_Model_PreBootType $preboottype) { + if (null === ($id = $preboottype->getID()) ) { + return; + } else { + $this->getDbTable()->delete(array('preboottypeID = ?' => $id)); + } + } + + public function find($id, Application_Model_PreBootType $preboottype = null) { + $result = $this->getDbTable()->find($id); + if (0 == count($result)) { + return; + } + + $row = $result->current(); + + if($preboottype == null) { + $preboottype = new Application_Model_PreBootType(); + $preboottype->setID($row->preboottypeID)->setName($row->name); + return $preboottype; + } else { + $preboottype->setID($row->preboottypeID)->setName($row->name); + } + + } + + public function fetchAll() { + $resultSet = $this->getDbTable()->fetchAll(); + $entries = array(); + foreach ($resultSet as $row) { + $entry = new Application_Model_PreBootType(); + + $entry->setID($row->preboottypeID) + ->setName($row->name); + + $entries[] = $entry; + } + return $entries; + } + + public function compare(Application_Model_PreBootType $v1, Application_Model_PreBootType $v2) { + $vv1 = $v1->toArray(); + $vv2 = $v2->toArray(); + return array_diff($vv1, $vv2); + } + + + +} + -- cgit v1.2.3-55-g7522