function trackback_blackhole_help in Spam 5
Drupal _help hook. Provides help and informational text about the spam module.
@path Current display path
Return value
Text appropriate for current $path
File
- trackback_blackhole/
trackback_blackhole.module, line 49
Code
function trackback_blackhole_help($path) {
switch ($path) {
case 'admin/modules#description':
$output = t('Drops all attempts to post or view trackbacks, minimizing the overhead of trackback spammers.');
break;
}
return $output;
}