You are here

function typogrify_help in Typogrify 5

Same name and namespace in other branches
  1. 6 typogrify.module \typogrify_help()

Implementation of hook_help().

File

./typogrify.module, line 51

Code

function typogrify_help($in_section = 'admin/help#typogrify') {
  switch ($in_section) {
    case 'admin/settings/modules#description':
      $the_output = t('Adds typographic refinements.');
      break;
    case 'admin/help#typogrify':
      $the_output = t('Adds typographic refinements.');
      break;
  }
  return $the_output;
}