You are here

function theme_spamspan_at_sign in SpamSpan filter 7

1 theme call to theme_spamspan_at_sign()
spamspan_admin::output in ./spamspan_admin.php
A helper function for the callbacks

File

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

Code

function theme_spamspan_at_sign($variables) {
  $output = '<img class="spam-span-image" alt="at" width="10" src="' . base_path() . drupal_get_path('module', 'spamspan') . '/image.gif" />';
  return $output;
}