You are here

function spamspan_filter_tips in SpamSpan filter 5

Same name and namespace in other branches
  1. 6 spamspan.module \spamspan_filter_tips()

Implementation of hook_filter_tips().

File

./spamspan.module, line 39
This module implements the spamspan technique (http://www.spamspan.com ) for hiding email addresses from spambots. If javascript is disabled on the client-side, addresses appear as example [at] example [dot] com.

Code

function spamspan_filter_tips($delta, $format, $long = FALSE) {
  switch ($delta) {
    case 0:
      return t('Each email address will be obfuscated in a human readble fashion or (if JavaScript is enabled) replaced with a spamproof clickable link.');
      break;
  }
}