function absolute_messages_perm in Absolute Messages 6
Implementation of hook_perm().
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_perm() {
  return array(
    'access absolute messages',
    'administer absolute messages',
  );
}