You are here

function invisimail_filter_tips in Invisimail 5

Same name and namespace in other branches
  1. 6 invisimail.module \invisimail_filter_tips()

Implementation of hook_filter_tips().

File

./invisimail.module, line 29
This module provides a filter that will search content for email addresses and replace them with their ascii equivalents before display. This is not a complete protection from spam harvesters, but it is some help.

Code

function invisimail_filter_tips($delta, $format, $long = FALSE) {
  switch ($delta) {
    case 0:
      if ($long) {
        return t('Every email address in the input text will be replaced with its ascii equivalent.');
      }
      break;
  }
}