You are here

function prevnext_help in Prevnext 2.0.x

Same name and namespace in other branches
  1. 8 prevnext.module \prevnext_help()
  2. 2.x prevnext.module \prevnext_help()

Implements hook_help().

File

./prevnext.module, line 18
Contains prevnext.module.

Code

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

    // Main module help for the prevnext module.
    case 'help.page.prevnext':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Add a &quot;Previous/Next&quot; links to the node display.') . '</p>';
      return $output;
    default:
  }
}