You are here

function phptemplate_privatemsg_list_field__thread_started in Privatemsg 6.2

Same name and namespace in other branches
  1. 6 privatemsg.theme.inc \phptemplate_privatemsg_list_field__thread_started()

Theme the thread started column.

Related topics

File

./privatemsg.theme.inc, line 100
Theme functions for privatemsg.

Code

function phptemplate_privatemsg_list_field__thread_started($thread) {
  $field = array();
  $field['data'] = format_date($thread['thread_started'], 'small');
  $field['class'] = 'privatemsg-list-date-started';
  return $field;
}