function ajax_test_dialog_close

Menu callback: Close the ajax dialog.

1 string reference to 'ajax_test_dialog_close'
ajax_test_menu in drupal/core/modules/system/tests/modules/ajax_test/ajax_test.module
Implements hook_menu().

File

drupal/core/modules/system/tests/modules/ajax_test/ajax_test.module, line 266
Helper module for Ajax framework tests.

Code

function ajax_test_dialog_close() {
  $response = new AjaxResponse();
  $response
    ->addCommand(new CloseDialogCommand('#ajax-test-dialog-wrapper-1'));
  return $response;
}