function spamspan_help in SpamSpan filter 6
Same name and namespace in other branches
- 8.2 spamspan.module \spamspan_help()
- 8 spamspan.module \spamspan_help()
- 5 spamspan.module \spamspan_help()
- 7 spamspan.module \spamspan_help()
Implementation of hook_help().
File
- ./
spamspan.module, line 38 - This module implements the spamspan technique (http://www.spamspan.com ) for hiding email addresses from spambots.
Code
function spamspan_help($path, $arg) {
switch ($path) {
case 'admin/help#spamspan':
return t('<p>The SpamSpan module obfuscates email addresses to help prevent spambots from collecting them. It will produce clickable links if JavaScript is enabled, and will show the email address as <code>example [at] example [dot] com</code> if the browser does not support JavaScript.</p><p>To configure the module, select "configure" next to the <a href="admin/filters">input format</a> you\'d like to use. Enable "Hide Email Addresses using the SpamSpan technique" and submit the form. Then select the "configure" tab to choose relevant options.</p>');
}
}