You are here

function workbench_moderation_help in Workbench Moderation 8

Same name and namespace in other branches
  1. 8.2 workbench_moderation.module \workbench_moderation_help()
  2. 7.3 workbench_moderation.module \workbench_moderation_help()
  3. 7 workbench_moderation.module \workbench_moderation_help()

Implements hook_help().

File

./workbench_moderation.module, line 29
Contains workbench_moderation.module.

Code

function workbench_moderation_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the workbench_moderation module.
    case 'help.page.workbench_moderation':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides basic moderation for content') . '</p>';
      return $output;
    default:
  }
}