function modal_forms_dismiss in Modal forms (with ctools) 7
Closes modal windows.
1 string reference to 'modal_forms_dismiss'
- modal_forms_menu in ./
modal_forms.module - Implements hook_menu().
File
- ./
modal_forms.pages.inc, line 334 - Page callbacks for the modal_forms module.
Code
function modal_forms_dismiss($js = NULL) {
if (!$js) {
// We should never be here out of ajax context.
return MENU_NOT_FOUND;
}
ctools_include('modal');
ctools_include('ajax');
$output = array(
ctools_modal_command_dismiss(),
);
print ajax_render($output);
}