You are here

function maxlength_help in Maxlength 7.2

Same name and namespace in other branches
  1. 8 maxlength.module \maxlength_help()
  2. 5.2 maxlength.module \maxlength_help()
  3. 5 maxlength.module \maxlength_help()
  4. 6.2 maxlength.module \maxlength_help()
  5. 6 maxlength.module \maxlength_help()
  6. 7.3 maxlength.module \maxlength_help()
  7. 7 maxlength.module \maxlength_help()

Implementation of hook_help().

File

./maxlength.module, line 11
Enables a max length countdown on node body, title and CCK textfields.

Code

function maxlength_help($path, $arg) {
  switch ($path) {
    case 'admin/help#maxlength':
    case 'admin/modules#description':
      return t('Sets a maximum length for body fields and shows a counter that is updated as you type.');
      break;
  }
}