You are here

function spamspan_admin in SpamSpan filter 7

Loads code used only in admin.

File

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

Code

function spamspan_admin() {
  static $object;
  if (!isset($object)) {
    $object = new spamspan_admin();
  }
  return $object;
}