You are here

function drupalchat_perm in DrupalChat 6.2

Same name and namespace in other branches
  1. 6 drupalchat.module \drupalchat_perm()

Implementation of hook_perm().

File

./drupalchat.module, line 109
Module code for DrupalChat.

Code

function drupalchat_perm() {
  return array(
    'access drupalchat',
    'administer drupalchat',
    'access drupalchat own logs',
    'access drupalchat all logs',
  );
}