You are here

function heartbeat_perm in Heartbeat 6.4

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

Implementation of hook_perm().

File

./heartbeat.module, line 119

Code

function heartbeat_perm() {
  return array(
    'configure heartbeat',
    'configure heartbeat messages',
    'access user activity',
    'delete heartbeat activity logs',
    'delete own heartbeat activity logs',
    'view heartbeat messages',
    'maintain own activity',
    'view personal heartbeat activity',
  );
}