function botcha_permission in BOTCHA Spam Prevention 7.2
Same name and namespace in other branches
- 7 botcha.module \botcha_permission()
Implements hook_permission().
File
- ./
botcha.module, line 249
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.'),
),
);
}