function workflow_load_multiple in Workflow 7.2
11 calls to workflow_load_multiple()
- workflow_access_features_export_options in workflow_access/
workflow_access.features.inc - Implements hook_features_export_options().
- workflow_actions_trigger_info in workflow_actions/
workflow_actions.module - Implements hook_trigger_info().
- workflow_admin_ui_edit_form_validate in workflow_admin_ui/
workflow_admin_ui.page.workflow.inc - Validate the workflow edit/add form.
- workflow_admin_ui_type_map_form in workflow_admin_ui/
workflow_admin_ui.page.type_map.inc - Page builder. Show a maintenance table for type mapping.
- workflow_get_workflows in ./
workflow.deprecated.inc - Get all workflows.
File
- ./
workflow.entity.inc, line 488 - Integrates workflow with entity API.
Code
function workflow_load_multiple($ids = FALSE, $reset = FALSE) {
return entity_load('Workflow', $ids, array(), $reset);
}