You are here

function contact_perm in Contact 6.2

Implements hook_perm

File

./contact.module, line 40
Enables the use of personal and site-wide contact forms.

Code

function contact_perm() {
  return array(
    'administer contact forms',
    'access site-wide contact form',
    'access user contact forms',
  );
}