You are here

function abjs_help in A/B Test JS 7

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

Implements hook_help().

File

./abjs.module, line 11
Define permissions and admin form paths, and write test JavaScript.

Code

function abjs_help($path, $arg) {
  switch ($path) {
    case 'admin/help#abjs':
      $output = <<<EOD
<h2>Documentation:</h2>
<p>See <a href="https://www.drupal.org/node/2716391">Module Documentation</a></p>
EOD;
      return $output;
  }
}