You are here

function _security_review_help_spam in Security Review 7

Same name and namespace in other branches
  1. 6 security_review.help.inc \_security_review_help_spam()

File

./security_review.help.inc, line 48
Main help definition.

Code

function _security_review_help_spam() {
  $element = array(
    'problem' => t("Spammers and spam content"),
    'type' => 'spam',
    'description' => t('Spammers use automated tools and systems to bombarge your site with unsollicited content. You can use modules to prevent the submission of such content.'),
    'options' => array(
      array(
        'name' => 'CAPTCHA',
        'href' => 'http://drupal.org/project/captcha',
      ),
    ),
  );
  return theme('security_review_help_options', array(
    'element' => $element,
  ));
}