function theme_privatemsg_list_field__last_updated in Privatemsg 7
Same name and namespace in other branches
- 7.2 privatemsg.theme.inc \theme_privatemsg_list_field__last_updated()
Theme the last updated column.
See also
Related topics
File
- ./
privatemsg.theme.inc, line 134 - Theme functions for privatemsg.
Code
function theme_privatemsg_list_field__last_updated($variables) {
$thread = $variables['thread'];
$field['data'] = privatemsg_format_date($thread['last_updated']);
$field['class'][] = 'privatemsg-list-date';
return $field;
}