You are here

function tmgmt_local_task_delete_multiple in Translation Management Tool 7

Deletes multiple local tasks entities.

Parameters

$tltids: An array of local tasks IDs.

File

translators/tmgmt_local/tmgmt_local.module, line 379
Main module file for the local translation module.

Code

function tmgmt_local_task_delete_multiple(array $tltids) {
  entity_get_controller('tmgmt_local_task')
    ->delete($tltids);
}