You are here

function privatemsg_filter_privatemsg_header_info in Privatemsg 7.2

Same name and namespace in other branches
  1. 6.2 privatemsg_filter/privatemsg_filter.module \privatemsg_filter_privatemsg_header_info()

Implements hook_privatemsg_header_info().

File

privatemsg_filter/privatemsg_filter.module, line 596
Allows users to tag private messages and to filter based upon those tags.

Code

function privatemsg_filter_privatemsg_header_info() {
  return array(
    'tags' => array(
      'data' => t('Tags'),
      'class' => array(
        'privatemsg-header-tags',
      ),
      '#weight' => -23,
      '#access' => privatemsg_user_access('tag private messages'),
    ),
  );
}