You are here

function workflow_get_workflows_by_name in Workflow 7

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

Get a specific workflow, name is a unique ID. @deprecated: workflow_get_workflows_by_name() --> Workflow::getWorkflowByName($name)

File

./workflow.deprecated.inc, line 33
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_name($name, $unserialize_options = FALSE) {
  return Workflow::getWorkflowByName($name, $unserialize_options);
}