You are here

function workflow_state_load_single in Workflow 7.2

25 calls to workflow_state_load_single()
Workflow::getNextSid in includes/Entity/Workflow.php
Returns the next state for the current state.
Workflow::getState in includes/Entity/Workflow.php
Gets a state for a given workflow.
WorkflowConfigTransition::getNewState in includes/Entity/WorkflowConfigTransition.php
WorkflowConfigTransition::getOldState in includes/Entity/WorkflowConfigTransition.php
workflowfield_field_formatter_view in workflow_field/workflowfield.formatter.inc
Implements hook_field_formatter_view().

... See full list

File

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

Code

function workflow_state_load_single($sid) {
  return WorkflowState::load($sid);
}