You are here

function theme_privatemsg_list_field__thread_started in Privatemsg 7

Same name and namespace in other branches
  1. 7.2 privatemsg.theme.inc \theme_privatemsg_list_field__thread_started()

Theme the thread started column.

See also

theme_privatemsg_list_field()

Related topics

File

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

Code

function theme_privatemsg_list_field__thread_started($variables) {
  $thread = $variables['thread'];
  $field = array();
  $field['data'] = privatemsg_format_date($thread['thread_started']);
  $field['class'][] = 'privatemsg-list-date-started';
  return $field;
}