You are here

function webform_civicrm_json in Webform CiviCRM Integration 7.2

Same name and namespace in other branches
  1. 6.2 webform_civicrm_d6_functions.inc \webform_civicrm_json()

Compatibility wrapper for drupal_json_output()

1 call to webform_civicrm_json()
webform_civicrm_js_options in ./webform_civicrm_utils.inc
Callback to serve AJAX requests.

File

./webform_civicrm_d7_functions.inc, line 25
Keep all functions specific to a version of Drupal here, to allow the rest of the code to be version-independent.

Code

function webform_civicrm_json($input) {
  exit(drupal_json_output($input));
}