You are here

function theme_workflow_history_table_row in Workflow 5.2

Same name and namespace in other branches
  1. 6.2 workflow.pages.inc \theme_workflow_history_table_row()
  2. 6 workflow.pages.inc \theme_workflow_history_table_row()
  3. 7.2 workflow.pages.inc \theme_workflow_history_table_row()
  4. 7 workflow.pages.inc \theme_workflow_history_table_row()
1 theme call to theme_workflow_history_table_row()
workflow_tab_page in ./workflow.module
Menu callback. Displays the workflow information for a node.

File

./workflow.module, line 204

Code

function theme_workflow_history_table_row($history, $old_state_name, $state_name) {
  return array(
    format_date($history->stamp),
    $old_state_name,
    $state_name,
    theme('username', $history),
    filter_xss($history->comment, array(
      'a',
      'em',
      'strong',
    )),
  );
}