Esempio n. 1
0
 public function delete(Application_Model_Models_Plugin $plugin)
 {
     $where = $this->getDbTable()->getAdapter()->quoteInto('id = ?', $plugin->getId());
     $deleteResult = $this->getDbTable()->delete($where);
     $plugin->notifyObservers();
 }