You are here

function spamicide_permission in Spamicide 7

Implements hook_permission().

File

./spamicide.module, line 75
This module provides yet another tool to eliminate spam.

Code

function spamicide_permission() {
  return array(
    'administer spamicide' => array(
      'title' => t("Administer Spamicide protection of Drupal's forms"),
      'description' => t('Select the known forms to protect with spamicide, and make administration links available on other forms not yet known to spamicide'),
    ),
  );
}