You are here

function heartbeat_perm in Heartbeat 6.2

Same name and namespace in other branches
  1. 6.4 heartbeat.module \heartbeat_perm()
  2. 6.3 heartbeat.module \heartbeat_perm()

Implementation of hook_perm().

File

./heartbeat.module, line 211
To fully understand this, you have to be familiar with the rules module. Lots of documentation can be found on http://drupal.org/node/298480 for an introduction and tutorial, but http://drupal.org/node/298486 is a lot of handy info for developers.

Code

function heartbeat_perm() {
  return array(
    'configure heartbeat',
    'configure heartbeat messages',
    'heartbeat view messages',
  );
}