You are here

function theme_workflow_deleted_state in Workflow 5.2

Same name and namespace in other branches
  1. 6.2 workflow.pages.inc \theme_workflow_deleted_state()
  2. 6 workflow.pages.inc \theme_workflow_deleted_state()
  3. 7.2 workflow.pages.inc \theme_workflow_deleted_state()
  4. 7 workflow.pages.inc \theme_workflow_deleted_state()

Theme a deleted state in the workflow history table.

1 theme call to theme_workflow_deleted_state()
workflow_tab_page in ./workflow.module
Menu callback. Displays the workflow information for a node.

File

./workflow.module, line 235

Code

function theme_workflow_deleted_state($state_name) {
  return check_plain(t($state_name)) . '*';
}