function typogrify_help in Typogrify 6
Same name and namespace in other branches
- 5 typogrify.module \typogrify_help()
Implementation of hook_help().
File
- ./
typogrify.module, line 64 - typogrify.module Typogrify: Brings typographical refinemnts to drupal
Code
function typogrify_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/settings/modules#description':
$output = t('Adds typographic refinements.');
break;
case 'admin/help#typogrify':
$output = t('Adds typographic refinements.');
break;
}
return $output;
}