You are here

function nofollowlist_help in Nofollow List 5

Same name and namespace in other branches
  1. 8 nofollowlist.module \nofollowlist_help()
  2. 6 nofollowlist.module \nofollowlist_help()
  3. 7 nofollowlist.module \nofollowlist_help()

Enter description here...

Parameters

string $section: A Drupal path

Return value

string The help text

File

./nofollowlist.module, line 59

Code

function nofollowlist_help($section) {
  switch ($section) {
    case 'admin/help#nofollowlist':
      $output = '<p>' . t('This module implements a simple filter to add the nofollow tag to sites that are on your blacklist or to all sites except those on your whitelist.') . '</p>';
      return $output;
  }
}