You are here

function privatemsg_attachments_privatemsg_header_info in Privatemsg 6.2

Implements hook_privatemsg_header_info().

File

privatemsg_attachments/privatemsg_attachments.module, line 389
Allows users to add attachments to messages

Code

function privatemsg_attachments_privatemsg_header_info() {
  $a = array(
    'attachment' => array(
      'data' => ' ',
      'class' => 'privatemsg-header-attachment',
      '#title' => t('Attachment icon'),
      '#weight' => -25,
    ),
  );
  return $a;
}