You are here

function casetracker_project_delete_multiple in Case Tracker 7.2

Delete multiple casetracker_projects.

Parameters

$pids: An array of casetracker_project IDs.

File

./casetracker_project.inc, line 104
This file concentrates all general functionality related to Projects in Case Tracker, leaving to the other files in /admin the stuff related to CRUD and structural configuration

Code

function casetracker_project_delete_multiple(array $pids) {
  entity_get_controller('casetracker_project')
    ->delete($pids);
}