function theme_workflow_current_state in Workflow 6.2
Same name and namespace in other branches
- 5.2 workflow.module \theme_workflow_current_state()
- 6 workflow.pages.inc \theme_workflow_current_state()
- 7.2 workflow_node/workflownode.module \theme_workflow_current_state()
- 7 workflow.node.inc \theme_workflow_current_state()
Theme the current state in the workflow history table.
1 theme call to theme_workflow_current_state()
- workflow_tab_page in ./
workflow.pages.inc - Menu callback. Display workflow summary of a node.
File
- ./
workflow.pages.inc, line 94 - Provide user interface for changing workflow state.
Code
function theme_workflow_current_state($state_name) {
return '<strong>' . check_plain(t($state_name)) . '</strong>';
}