Implements hook_permission().

File

./spambot.module, line 53

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'),
        ),
    );
}