function nofollowlist_help in Nofollow List 7
Same name and namespace in other branches
- 8 nofollowlist.module \nofollowlist_help()
- 5 nofollowlist.module \nofollowlist_help()
- 6 nofollowlist.module \nofollowlist_help()
Implements hook_help().
File
- ./
nofollowlist.module, line 75 - Provides a nofollowlist filter.
Code
function nofollowlist_help($path, $arg) {
switch ($path) {
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;
}
}