Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Ajax / CloseModalDialogCommand.php
diff --git a/web/core/lib/Drupal/Core/Ajax/CloseModalDialogCommand.php b/web/core/lib/Drupal/Core/Ajax/CloseModalDialogCommand.php
new file mode 100644 (file)
index 0000000..a9c3fe7
--- /dev/null
@@ -0,0 +1,23 @@
+<?php
+
+namespace Drupal\Core\Ajax;
+
+/**
+ * Defines an AJAX command that closes the currently visible modal dialog.
+ *
+ * @ingroup ajax
+ */
+class CloseModalDialogCommand extends CloseDialogCommand {
+
+  /**
+   * Constructs a CloseModalDialogCommand object.
+   *
+   * @param bool $persist
+   *   (optional) Whether to persist the dialog in the DOM or not.
+   */
+  public function __construct($persist = FALSE) {
+    $this->selector = '#drupal-modal';
+    $this->persist = $persist;
+  }
+
+}