You are here

function better_revisions_help in Better Revisions 8

Same name and namespace in other branches
  1. 7 better_revisions.module \better_revisions_help()

Implements hook_help().

File

./better_revisions.module, line 13
Main enhanced revisions module file.

Code

function better_revisions_help($path, $arg) {
  switch ($path) {

    // Main module help for the block module.
    case 'admin/help#better_revisions':
      return t('<p>Changes the built-in revisions system to a less confusing drop-down.</p>');
  }
}