function theme_privatemsg_block_inbox in Privatemsg 5.3
Same name and namespace in other branches
- 5 privatemsg.module \theme_privatemsg_block_inbox()
1 theme call to theme_privatemsg_block_inbox()
File
- ./
privatemsg.module, line 2340
Code
function theme_privatemsg_block_inbox($new) {
$items = array(
l(t('Inbox') . ($new ? " ({$new})" : ''), 'privatemsg'),
l(t('Write message'), 'privatemsg/new'),
);
return array(
'subject' => t('Private messages'),
'content' => theme('item_list', $items),
);
}