You are here

function revision_all_help in Revision All 7.2

Implements hook_help().

File

./revision_all.module, line 242
Permits configuring content revision settings from a central location. Also makes alterations to existing forms based on user specified settings.

Code

function revision_all_help($path, $arg) {
  switch ($path) {
    case 'admin/help#revision_all':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Revision All allows for centralized management of content type revisioning. Revisioning can
                            be turned on/off individually by type or enabled for all simultaneously. There is also
                            support for enabling automatic revisioning of future content types and the disabling of the
                            "create new revision" checkbox on content type and node forms.') . '</p>';
      return $output;
    default:
      return '';
  }
}