1.20.x ajax_test.module | ajax_test_dialog_close() |
Menu callback: Close the ajax dialog.
File
- modules/
simpletest/ tests/ ajax_test.module, line 227 - Helper module for Ajax framework tests.
Code
function ajax_test_dialog_close() {
$commands = array(
'#type' => 'ajax',
'#commands' => array(),
);
$commands['#commands'][] = ajax_command_close_dialog('#ajax-test-dialog-wrapper-1');
return $commands;
}