コード例 #1
0
 /**
  * Delete Page
  *
  * @param int $ids
  */
 public function delete(Contact_Model_Subscription $subscription)
 {
     //delete page
     $result = $this->_dbTable->getAdapter()->delete('contact_subscription', array('id = ?' => $subscription->get_id()));
     return $result > 0;
 }