You are here

function spamicide_help in Spamicide 6

Same name and namespace in other branches
  1. 8 spamicide.module \spamicide_help()
  2. 5 spamicide.module \spamicide_help()
  3. 7 spamicide.module \spamicide_help()

Implementation of hook_help().

File

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

Code

function spamicide_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/spamicide':
      return t('The spamicide module provides the ability to prevent spam being submitted to your site on various drupal forms');
    case 'admin/help#spamicide':
      $output = 'Spamicide';
      $output .= '<p>' . t("Spamicide is intended to prevent spam without user interaction. Select the forms you'd like to attach spamicide to and a form field will be added but hidden by css. If the field is filled by anything (including humans that think they know better) it will prevent submission into you site.") . '</p>';
      $output .= '<p>' . t('To add Spamicide to a form once you\'ve enabled adding admin links, navigate to that form, and click the link "Add Spamicide protection to this form"') . '</p>';
      return $output;
  }
}