You are here

function theme_privatemsg_list_header__subject in Privatemsg 7

Define the subject header.

See also

theme_privatemsg_list_header()

Related topics

File

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

Code

function theme_privatemsg_list_header__subject() {
  return array(
    'data' => t('Subject'),
    'field' => 'subject',
    'class' => array(
      'privatemsg-header-subject',
    ),
    '#weight' => -40,
  );
}