You are here

function autosave_help in Autosave 7.2

Same name and namespace in other branches
  1. 5.3 autosave.module \autosave_help()
  2. 5 autosave.module \autosave_help()
  3. 5.2 autosave.module \autosave_help()
  4. 6.2 autosave.module \autosave_help()
  5. 6 autosave.module \autosave_help()
  6. 7 autosave.module \autosave_help()

Implements hook_help().

File

./autosave.module, line 14
Does background saves of node being edited.

Code

function autosave_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#autosave':
      $output = '<p>' . t('The autosave module automatically saves a form after a period of time.') . '</p>';
      break;
  }
  return $output;
}