You are here

function abjs_help in A/B Test JS 2.0.x

Same name and namespace in other branches
  1. 8 abjs.module \abjs_help()
  2. 7 abjs.module \abjs_help()

Implements hook_help().

File

./abjs.module, line 15
Write test JavaScript.

Code

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

    // Main module help for the block module.
    case 'help.page.abjs':
      return '<h3>' . t('See the <a href="@documentation">Module Documentation</a> for a detailed description of the module and instructions.', [
        '@documentation' => 'https://www.drupal.org/node/2716391',
      ]) . '</h3>';
  }
}