You are here

function redhen_note_delete_multiple in RedHen CRM 7

Deletes multiple notes by ID.

Parameters

$note_ids: An array of note IDs to delete.

Return value

TRUE on success, FALSE otherwise.

2 calls to redhen_note_delete_multiple()
redhen_note_delete_form_submit in modules/redhen_note/includes/redhen_note.forms.inc
Submit callback for redhen_note_delete_form().
redhen_note_entity_delete in modules/redhen_note/redhen_note.module
Implements hook_entity_delete().

File

modules/redhen_note/redhen_note.module, line 270
Redhen Notes main module

Code

function redhen_note_delete_multiple($note_ids) {
  $ret = entity_get_controller('redhen_note')
    ->delete($note_ids);
  return $ret;
}