You are here

function workflow_get_workflows_by_wid in Workflow 7

Same name and namespace in other branches
  1. 7.2 workflow.deprecated.inc \workflow_get_workflows_by_wid()

Get a specific workflow, wid is a unique ID. @deprecated: workflow_get_workflows_by_wid() --> Workflow::load($wid)

File

./workflow.deprecated.inc, line 25
Contains contains per-class functions, that are deprecated. Usage: The new code can be tested, by removing this file-include from workflow.module.

Code

function workflow_get_workflows_by_wid($wid, $reset = FALSE) {
  return Workflow::load($wid, $reset);
}