function ajax_forms_test_lazy_load_form_ajax

AJAX form callback: Selects for the ajax_forms_test_lazy_load_form() form.

1 string reference to 'ajax_forms_test_lazy_load_form_ajax'
ajax_forms_test_lazy_load_form in drupal/core/modules/system/tests/modules/ajax_forms_test/ajax_forms_test.module
Form builder: Builds a form that triggers a simple AJAX callback.

File

drupal/core/modules/system/tests/modules/ajax_forms_test/ajax_forms_test.module, line 552
Simpletest mock module for Ajax forms testing.

Code

function ajax_forms_test_lazy_load_form_ajax($form, &$form_state) {
  return array(
    '#markup' => 'new content',
  );
}