You are here

function recaptcha_mailhide_filter_tips in reCAPTCHA 6

Same name and namespace in other branches
  1. 5.2 recaptcha_mailhide.module \recaptcha_mailhide_filter_tips()

Implements hook_filter_tips().

1 call to recaptcha_mailhide_filter_tips()
recaptcha_mailhide_filter in recaptcha_mailhide/recaptcha_mailhide.module
Implements hook_filter().

File

recaptcha_mailhide/recaptcha_mailhide.module, line 96
Protects email addresses using the reCAPTCHA web service.

Code

function recaptcha_mailhide_filter_tips($delta, $format, $long = FALSE) {
  return t('E-Mail addresses are hidden with <a href="@url">reCAPTCHA Mailhide</a>.', array(
    '@url' => 'http://www.google.com/recaptcha/mailhide/apikey',
  ));
}