DismissFormCommand.php

Contains \Drupal\views\Ajax\DismissFormCommand.

Namespace

Drupal\views\Ajax

File

drupal/core/modules/views/lib/Drupal/views/Ajax/DismissFormCommand.php
View source
<?php

/**
 * @file
 * Contains \Drupal\views\Ajax\DismissFormCommand.
 */
namespace Drupal\views\Ajax;

use Drupal\Core\Ajax\CommandInterface;

/**
 * Provides an AJAX command for closing the views form modal.
 *
 * This command is implemented in Drupal.AjaxCommands.prototype.viewsDismissForm.
 */
class DismissFormCommand implements CommandInterface {

  /**
   * Implements \Drupal\Core\Ajax\CommandInterface::render().
   */
  public function render() {
    return array(
      'command' => 'viewsDismissForm',
    );
  }

}

Classes

Namesort descending Description
DismissFormCommand Provides an AJAX command for closing the views form modal.