You are here

function tmgmt_job_item_load_multiple in Translation Management Tool 7

Loads translation job items.

Parameters

$tjiids: An array of job item ids.

$conditions: An array of additional conditions.

Return value

TMGMTJobItem[] An array of job item entities or an empty array if the query returned no results.

Related topics

6 calls to tmgmt_job_item_load_multiple()
TMGMTCRUDTestCase::testJobItems in tests/tmgmt.crud.test
Test crud operations of job items.
TMGMTUITestCase::testCart in ui/tmgmt_ui.test
Test the cart functionality.
tmgmt_job_item_load in ./tmgmt.module
Loads a translation job item.
tmgmt_job_item_load_all_latest in ./tmgmt.module
Loads all latest job entities that have a job item with the identifiers.
tmgmt_job_item_load_latest in ./tmgmt.module
Loads active job entities that have a job item with the identifiers.

... See full list

File

./tmgmt.module, line 751
Main module file for the Translation Management module.

Code

function tmgmt_job_item_load_multiple($tjiids = array(), $conditions = array()) {
  return entity_load('tmgmt_job_item', $tjiids, $conditions);
}