You are here

function theme_privatemsg_list_header__count in Privatemsg 7

Define the answers column.

See also

theme_privatemsg_list_header()

Related topics

File

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

Code

function theme_privatemsg_list_header__count() {
  return array(
    'data' => t('Messages'),
    'class' => array(
      'privatemsg-header-count',
    ),
    '#weight' => -25,
  );
}