You are here

function spamspan_admin::page_object in SpamSpan filter 7

Return the admin page. External text should be checked: = array('#markup' => check_plain($format->name));

File

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

Class

spamspan_admin

Code

function page_object() {
  if (!isset($this->page)) {
    $this->page = new spamspan_admin_page($this);
  }
  return $this->page;
}