summaryrefslogblamecommitdiffstats
path: root/application/models/ConfigMapper.php
blob: 8ee9e0cfb8dbcf56c451a3fae419cf2f95af427a (plain) (tree)
1
2
3
4
5
6
7



                                    

                            
 




                                                  
 











                                                                                   
                                                                              







                                                              
                                                                                                                                                                                                                                                            

                                                         
                                                 

                                                           









                                                                                         











                                                                   
                                                                                                                                                                                                    








                                                                
                                                                                                                                                                                                                


                                            




                                

 
<?php

class Application_Model_ConfigMapper
{
	
	protected $_dbTable;

	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_Config');
		}
		
		return $this->_dbTable;
	}

	public function save(Application_Model_Config $config)
	{
		
		$data = array('configID'=> $config->getID() ,'groupID'=> $config->getGroupID(), 'membershipID'=> $config->getMembershipID(), 'shellscript'=> $config->getShellscript(), 'title'=> $config->getTitle() , 'created'=> $config->getCreated() );

		if (null === ($id = $config->getID()) ) {
			unset($data['configID']);
			$this->getDbTable()->insert($data);
		} else {
			$this->getDbTable()->update($data, array('configID = ?' => $id));
		}
	}
	
	public function delete(Application_Model_Config $config)
	{
		if (null === ($id = $config->getID()) ) {
			return;
		} else {
			$this->getDbTable()->delete(array('configID = ?' => $id));
		}
	}

	public function find($id, Application_Model_Config $config)
	{
		$result = $this->getDbTable()->find($id);
		if (0 == count($result)) {
			return;
		}

		$row = $result->current();
		
		$config->setID($row->configID)->setGroupID($row->groupID)->setMembershipID($row->membershipID)->setCreated($row->created)->setShellscript($row->shellscript)->setTitle($row->title);
	}

	public function fetchAll()
	{
		$resultSet = $this->getDbTable()->fetchAll();
		$entries   = array();
		foreach ($resultSet as $row) {
			$entry = new Application_Model_Config();
			
			$entry->setID($row->configID)->setGroupID($row->groupID)->setMembershipID($row->membershipID)->setCreated($row->created)->setShellscript($row->shellscript)->setTitle($row->title);	

			$entries[] = $entry;
		}
		return $entries;
	}


	
}