コード例 #1
0
 public function delete(Application_Model_Models_Redirect $redirect)
 {
     $where = $this->getDbTable()->getAdapter()->quoteInto('id = ?', $redirect->getId());
     $deleteResult = $this->getDbTable()->delete($where);
     $redirect->notifyObservers();
 }