You are here

function spamspan_theme in SpamSpan filter 7

Same name and namespace in other branches
  1. 8.2 spamspan.module \spamspan_theme()
  2. 8 spamspan.module \spamspan_theme()

Implements hook_theme().

File

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

Code

function spamspan_theme($existing, $type, $theme, $path) {
  return array(
    'spamspan_at_sign' => array(
      'variables' => array(
        // the spamspan filter settings if anyone needs them
        'settings' => array(),
      ),
    ),
  );
}