You are here

function workflow_node_tab_access in Workflow 7.2

Same name and namespace in other branches
  1. 6.2 workflow.module \workflow_node_tab_access()
  2. 6 workflow.module \workflow_node_tab_access()
  3. 7 workflow.node.inc \workflow_node_tab_access()

Menu access control callback. Determine access to Workflow tab.

File

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

Code

function workflow_node_tab_access($node = NULL) {
  if ($node == NULL) {
    return FALSE;
  }
  return workflow_tab_access('node', $node);
}