function theme_workflow_deleted_state in Workflow 7.2
Same name and namespace in other branches
- 5.2 workflow.module \theme_workflow_deleted_state()
- 6.2 workflow.pages.inc \theme_workflow_deleted_state()
- 6 workflow.pages.inc \theme_workflow_deleted_state()
- 7 workflow.pages.inc \theme_workflow_deleted_state()
Theme a deleted state in the workflow history table.
$state_name must be run through check_plain(t()) prior to calling this theme function.
1 theme call to theme_workflow_deleted_state()
- workflow_tab_page in ./
workflow.pages.inc - Menu callback. Display workflow summary of a node.
File
- ./
workflow.pages.inc, line 248 - Provide user interface for changing workflow state.
Code
function theme_workflow_deleted_state($variables) {
return $variables['state_name'] . MARK_STATE_IS_DELETED;
}