class CloseDialogCommand
Defines an AJAX command that closes the current active dialog.
Hierarchy
- class \Drupal\Core\Ajax\CloseDialogCommand implements \Drupal\Core\Ajax\CommandInterface
Expanded class hierarchy of CloseDialogCommand
Related topics
6 files declare their use of CloseDialogCommand
- AddFormBase.php in core/modules/ media_library/ src/ Form/ AddFormBase.php 
- AjaxCommandsTest.php in core/tests/ Drupal/ Tests/ Core/ Ajax/ AjaxCommandsTest.php 
- AjaxTestController.php in core/modules/ system/ tests/ modules/ ajax_test/ src/ Controller/ AjaxTestController.php 
- ContentModerationConfigureEntityTypesForm.php in core/modules/ content_moderation/ src/ Form/ ContentModerationConfigureEntityTypesForm.php 
- LayoutRebuildTrait.php in core/modules/ layout_builder/ src/ Controller/ LayoutRebuildTrait.php 
File
- 
              core/lib/ Drupal/ Core/ Ajax/ CloseDialogCommand.php, line 10 
Namespace
Drupal\Core\AjaxView source
class CloseDialogCommand implements CommandInterface {
  
  /**
   * A CSS selector string of the dialog to close.
   *
   * @var string
   */
  protected $selector;
  
  /**
   * Whether to persist the dialog in the DOM or not.
   *
   * @var bool
   */
  protected $persist;
  
  /**
   * Constructs a CloseDialogCommand object.
   *
   * @param string $selector
   *   A CSS selector string of the dialog to close.
   * @param bool $persist
   *   (optional) Whether to persist the dialog in the DOM or not.
   */
  public function __construct($selector = NULL, $persist = FALSE) {
    $this->selector = $selector ? $selector : '#drupal-modal';
    $this->persist = $persist;
  }
  
  /**
   * {@inheritdoc}
   */
  public function render() {
    return [
      'command' => 'closeDialog',
      'selector' => $this->selector,
      'persist' => $this->persist,
    ];
  }
}Members
| Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides | 
|---|---|---|---|---|---|
| CloseDialogCommand::$persist | protected | property | Whether to persist the dialog in the DOM or not. | ||
| CloseDialogCommand::$selector | protected | property | A CSS selector string of the dialog to close. | ||
| CloseDialogCommand::render | public | function | Return an array to be run through json_encode and sent to the client. | Overrides CommandInterface::render | |
| CloseDialogCommand::__construct | public | function | Constructs a CloseDialogCommand object. | 1 | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
