You are here

function js_test_init in JS Callback Handler 6

Same name and namespace in other branches
  1. 7 tests/js_test.module \js_test_init()

Implements hook_init().

File

tests/js_test.module, line 30
JavaScript callback handler tests.

Code

function js_test_init() {
  global $js_test_init;

  // Set a global variable to indicate the hook init has been called.
  $js_test_init = TRUE;
}