function nofollowlist_help in Nofollow List 6
Same name and namespace in other branches
- 8 nofollowlist.module \nofollowlist_help()
- 5 nofollowlist.module \nofollowlist_help()
- 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($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;
}
}