You are here

function botcha_permission in BOTCHA Spam Prevention 7

Same name and namespace in other branches
  1. 7.2 botcha.module \botcha_permission()

Implements hook_permission().

File

./botcha.module, line 87
BOTCHA - Spam Prevention It modifies forms by adding various botcha's.

Code

function botcha_permission() {
  return array(
    'administer BOTCHA settings' => array(
      'title' => t('Administer BOTCHA settings'),
    ),
    'skip BOTCHA' => array(
      'title' => t('Skip BOTCHA'),
      'description' => t('Users with this permission will not be subjected to BOTCHA.'),
    ),
  );
}