You are here

function phptemplate_privatemsg_list_header__thread_started in Privatemsg 6

Define the thread started column.

See also

theme_privatemsg_list_header()

Related topics

File

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

Code

function phptemplate_privatemsg_list_header__thread_started() {
  return array(
    'data' => t('Started'),
    'field' => 'thread_started',
    'key' => 'thread_started',
    'class' => 'privatemsg-header-threadstarted',
    '#weight' => -15,
  );
}