You are here

function tmgmt_local_task_load in Translation Management Tool 7

Loads a local translation task entity.

Return value

TMGMTLocalTask

3 calls to tmgmt_local_task_load()
TMGMTLocalTestCase::testBasicWorkflow in translators/tmgmt_local/tmgmt_local.test
Test the basic translation workflow
tmgmt_local_translation_assign_form_submit in translators/tmgmt_local/includes/tmgmt_local.pages.inc
Submit handler for form for assigning multiple tasks to translator.
tmgmt_local_translation_reassign_form_submit in translators/tmgmt_local/includes/tmgmt_local.pages.inc
Submit handler for form for reassigning multiple tasks to translator.

File

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

Code

function tmgmt_local_task_load($tltid) {
  return entity_load_single('tmgmt_local_task', $tltid);
}