You are here

function spamspan_admin::help in SpamSpan filter 7

Responds to hook_help().

File

./spamspan_admin.php, line 112
This module implements the spamspan technique (http://www.spamspan.com ) for hiding email addresses from spambots.

Class

spamspan_admin

Code

function help($path, $arg) {
  switch ($path) {
    case 'admin/help#spamspan':
      return t($this->help, array(
        '@url' => $this->configuration_page,
      ));
  }
}