public function delete(Gyuser_Model_ClientTypes $obj)
 {
     try {
         $table = $this->getDbTable();
         $set = array('status' => 0);
         $where = array('id = ?' => $obj->getId());
         $result = $table->update($set, $where);
         return $result;
     } catch (Exception $e) {
         echo $e;
     }
 }
Esempio n. 2
0
 public function fetchAll()
 {
     $table = $this->getDbTable();
     $select = $table->select();
     $select->from($table, array('id', 'name'));
     $select->where('status = ?', true);
     $select->order('name ASC');
     $resultSet = $table->fetchAll($select);
     $entries = array();
     foreach ($resultSet as $row) {
         $entry = new Gyuser_Model_ClientTypes();
         $entry->setId($row->id);
         $entry->setName($row->name);
         $entries[] = $entry;
     }
     return $entries;
 }
Esempio n. 3
0
 public function deleteclienttypeajaxAction()
 {
     try {
         $request = $this->getRequest();
         if ($this->getRequest()->isPost()) {
             $mapper = new Gyuser_Model_ClientTypesDataMapper();
             $Obj = new Gyuser_Model_ClientTypes();
             $Obj->setId($request->id);
             $this->_helper->layout->disableLayout();
             $this->_helper->viewRenderer->setNoRender();
             $result = $mapper->delete($Obj);
             if ($result) {
                 echo $result;
             } else {
                 echo "f";
             }
         }
     } catch (Exception $e) {
         echo $e;
     }
 }