You are here

function workflow_get_workflow_scheduled_transition_by_nid in Workflow 7.2

Same name and namespace in other branches
  1. 7 workflow.deprecated.inc \workflow_get_workflow_scheduled_transition_by_nid()

Given a node, get all scheduled transitions for it.

@deprecated: workflow_get_workflow_scheduled_transition_by_nid() --> WorkflowScheduledTransition::load()

File

./workflow.deprecated.inc, line 648
Contains contains per-class functions, that are deprecated.

Code

function workflow_get_workflow_scheduled_transition_by_nid($nid) {
  return WorkflowScheduledTransition::load('node', $nid);
}