function absolute_messages_permission in Absolute Messages 7
Implements hook_permission().
File
- ./
absolute_messages.module, line 12  - Module displaying system messages in colored horizontal bars on top of the page, similar to Stack Overflow / Stack Exchange network notifications.
 
Code
function absolute_messages_permission() {
  return array(
    'access absolute messages' => array(
      'title' => t('Access absolute messages'),
    ),
    'administer absolute messages' => array(
      'title' => t('Administer absolute messages'),
    ),
  );
}