function better_formats_help in Better Formats 6
Same name and namespace in other branches
- 6.2 better_formats.module \better_formats_help()
Implementation of hook_help().
File
- ./
better_formats.module, line 14 - Enhances Drupal's core input format settings.
Code
function better_formats_help($path, $arg) {
switch ($path) {
case 'admin/help/better_formats':
$output = '<p>' . t('See the module README.txt file in the better_formats module directory for help.') . '</p>';
break;
default:
$output = '';
}
return $output;
}