function maxlength_help in Maxlength 6.2
Same name and namespace in other branches
- 8 maxlength.module \maxlength_help()
- 5.2 maxlength.module \maxlength_help()
- 5 maxlength.module \maxlength_help()
- 6 maxlength.module \maxlength_help()
- 7.3 maxlength.module \maxlength_help()
- 7 maxlength.module \maxlength_help()
- 7.2 maxlength.module \maxlength_help()
Implementation of hook_help().
File
- ./
maxlength.module, line 15 - Enables a max length countdown on node body, title and CCK textfields.
Code
function maxlength_help($path, $arg) {
switch ($path) {
case 'admin/help#max_length_properties':
case 'admin/modules#description':
return t('Sets a maximum length for body fields and shows a counter that is updated as you type.');
break;
}
}