You are here

function _datereminder_delete_rids in Date Reminder 7

Same name and namespace in other branches
  1. 6.2 includes/db6.inc \_datereminder_delete_rids()

Delete a list of reminder ids.

Parameters

array $rids: List of rids to delete.

1 call to _datereminder_delete_rids()
_datereminder_admin_delete_set in ./datereminder.module
Callback to delete a group of reminders from admin menu form.

File

includes/db7.inc, line 252

Code

function _datereminder_delete_rids($rids) {
  db_delete('datereminder')
    ->condition('rid', $rids, 'IN')
    ->execute();
}