function autosave_help in Autosave 5.2
Same name and namespace in other branches
- 5.3 autosave.module \autosave_help()
- 5 autosave.module \autosave_help()
- 6.2 autosave.module \autosave_help()
- 6 autosave.module \autosave_help()
- 7.2 autosave.module \autosave_help()
- 7 autosave.module \autosave_help()
Implementation of hook_help().
File
- ./
autosave.module, line 11 - Automatically saves a node after a period of time.
Code
function autosave_help($section) {
switch ($section) {
case 'admin/help#autosave':
$output = '<p>' . t('The autosave module automatically saves a form after a period of time.') . '</p>';
return $output;
}
}