You are here

function spambot_permission in Spambot 7

Implements hook_permission().

File

./spambot.module, line 53
Main module file.

Code

function spambot_permission() {
  return array(
    'protected from spambot scans' => array(
      'title' => t('Protected from spambot scans'),
      'description' => t('Roles with this access permission would not be checked for spammer'),
    ),
  );
}