You are here

function spam_help in Spam 6

Same name and namespace in other branches
  1. 5.3 spam.module \spam_help()
  2. 5 spam.module \spam_help()

Online help. Drupal _help() hook.

File

./spam.module, line 644
Spam module, v3 Copyright(c) 2006-2008 Jeremy Andrews <jeremy@tag1consulting.com>. All rights reserved.

Code

function spam_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/spam':
      return t('Enable and disable individual spam filters for each content type, controlling which order the content is passed through the filters.');
      break;
  }
}