You are here

function maxlength_help in Maxlength 5

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

File

./maxlength.module, line 16

Code

function maxlength_help($section) {
  switch ($section) {
    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;
  }
}