function theme_privatemsg_list_header__participants in Privatemsg 7
Define the participants column.
See also
theme_privatemsg_list_header()
Related topics
File
- ./
privatemsg.theme.inc, line 200 - Theme functions for privatemsg.
Code
function theme_privatemsg_list_header__participants() {
return array(
'data' => t('Participants'),
'class' => array(
'privatemsg-header-participants',
),
'#weight' => -30,
);
}