setTable( new NewslettersRecipientsTable()); } /** * * delete multiple recipients from the table * * @param array $ids the ids of the rows to be deleted * @return int returns the number of affected rows */ public function delete(array $ids) { $adapter = $this->_table->getAdapter(); $where[] = $adapter->quoteInto('id IN (?)', $ids); return $this->_table->delete($where); } }