function spamspan_filter_tips in SpamSpan filter 6
Same name and namespace in other branches
- 5 spamspan.module \spamspan_filter_tips()
Implementation of hook_filter_tips().
File
- ./
spamspan.module, line 49 - This module implements the spamspan technique (http://www.spamspan.com ) for hiding email addresses from spambots.
Code
function spamspan_filter_tips($delta, $format, $long = FALSE) {
switch ($delta) {
case 0:
return t('Each email address will be obfuscated in a human readable fashion or (if JavaScript is enabled) replaced with a spamproof clickable link.');
break;
}
}