You are here

function js_js_info in JS Callback Handler 7.2

Implements hook_js_info().

See also

js_js_callback_form()

File

./js.module, line 137
JavaScript callback handler module.

Code

function js_js_info() {
  $callbacks['form'] = array(
    // Because this callback invokes js_get_page() and fully bootstraps Drupal,
    // there is no need to have these enabled. Also, FAPI handles it's own
    // validation.
    'token' => FALSE,
    'xss' => FALSE,
  );
  return $callbacks;
}