function workflow_node_tab_access in Workflow 7
Same name and namespace in other branches
- 6.2 workflow.module \workflow_node_tab_access()
- 6 workflow.module \workflow_node_tab_access()
- 7.2 workflow.deprecated.inc \workflow_node_tab_access()
Wrapper function for workflow_tab_access after renaming workflow_node_tab_access() to workflow_tab_access(), since *_tab_access() is a Workflow functionality, not Node API.
Deprecated
workflow_node_tab_access(). Is not used anymore.
File
- ./
workflow.node.inc, line 358 - Node specific functions, remnants of nodeapi.
Code
function workflow_node_tab_access($node = NULL) {
return workflow_tab_access($node);
}