You are here

function theme_privatemsg_list_header__thread_started in Privatemsg 7

Define the thread started column.

See also

theme_privatemsg_list_header()

Related topics

File

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

Code

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