You are here

function workflow_transition_load_multiple in Workflow 7.2

Load WorkflowTransitions, most recent first.

@deprecated: workflow_get_workflow_node_history_by_nid() --> workflow_transition_load_single() @deprecated: workflow_get_recent_node_history() --> workflow_transition_load_single()

Parameters

string $field_name: Optional. Can be NULL, if you want to load any field.

3 calls to workflow_transition_load_multiple()
workflow_get_workflow_node_history_by_nid in ./workflow.deprecated.inc
Get all recorded history for a node id.
workflow_tab_page in ./workflow.pages.inc
Menu callback. Display workflow summary of a node.
workflow_transition_load_single in ./workflow.entity.inc
Load WorkflowTransitions, most recent first.

File

./workflow.entity.inc, line 558
Integrates workflow with entity API.

Code

function workflow_transition_load_multiple($entity_type, array $entity_ids, $field_name = '', $limit = NULL, $langcode = '') {
  return WorkflowTransition::loadMultiple($entity_type, $entity_ids, $field_name, $limit, $langcode);
}