You are here

function toc_js_per_node_help in Toc.js 8

Same name and namespace in other branches
  1. 2.0.x modules/toc_js_per_node/toc_js_per_node.module \toc_js_per_node_help()

Implements hook_help().

File

modules/toc_js_per_node/toc_js_per_node.module, line 18
Contains toc_js_per_node.module.

Code

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

    // Main module help for the toc_js module.
    case 'help.page.toc_js_per_node':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allow to override Toc.js settings per node') . '</p>';
      return $output;
    default:
  }
}