You are here

function dialog_command_dismiss in Dialog 7

Same name and namespace in other branches
  1. 6 dialog.module \dialog_command_dismiss()

Creates a Drupal AJAX command to close the modal.

File

./dialog.module, line 197
The Dialog module provides an API for displaying and interacting with jQuery UI Dialog modals.

Code

function dialog_command_dismiss() {
  return array(
    'command' => 'dialog_dismiss',
  );
}