You are here

function nofollowlist_filter_tips in Nofollow List 6

Same name and namespace in other branches
  1. 5 nofollowlist.module \nofollowlist_filter_tips()
  2. 7 nofollowlist.module \nofollowlist_filter_tips()

Implementation of hook_filter_tips()

Parameters

int $delta: Used when a module defines more than one filter

unknown_type $format:

boolean $long: Determines whether the long or the short tip version is displayed

Return value

string The tip to be displayed

File

./nofollowlist.module, line 78

Code

function nofollowlist_filter_tips($delta, $format, $long = false) {
  $output .= '<p>' . t('Links to specified hosts will have a rel="nofollow" added to them.') . "</p>\n";
  return $output;
}