function _form_test_checkbox_submit

7.x form_test.module _form_test_checkbox_submit($form, &$form_state)

Return the form values via JSON.

1 string reference to '_form_test_checkbox_submit'
form_test_checkboxes_zero in drupal-7.x/modules/simpletest/tests/form_test.module

File

drupal-7.x/modules/simpletest/tests/form_test.module, line 1027
Helper module for the form API tests.

Code

function _form_test_checkbox_submit($form, &$form_state) {
  drupal_json_output($form_state['values']);
  exit();
}