class AjaxResponse in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Ajax/AjaxResponse.php \Drupal\Core\Ajax\AjaxResponse
- 10 core/lib/Drupal/Core/Ajax/AjaxResponse.php \Drupal\Core\Ajax\AjaxResponse
JSON response object for AJAX requests.
Hierarchy
- class \Drupal\Core\Ajax\AjaxResponse extends \Symfony\Component\HttpFoundation\JsonResponse implements AttachmentsInterface uses AttachmentsTrait
Expanded class hierarchy of AjaxResponse
Related topics
43 files declare their use of AjaxResponse
- AddFormBase.php in core/modules/ media_library/ src/ Form/ AddFormBase.php 
- AjaxCssForm.php in core/modules/ ckeditor/ tests/ modules/ src/ Form/ AjaxCssForm.php 
- AjaxRenderer.php in core/lib/ Drupal/ Core/ Render/ MainContent/ AjaxRenderer.php 
- AjaxResponseSubscriber.php in core/lib/ Drupal/ Core/ EventSubscriber/ AjaxResponseSubscriber.php 
- AjaxResponseTest.php in core/tests/ Drupal/ Tests/ Core/ Ajax/ AjaxResponseTest.php 
File
- core/lib/ Drupal/ Core/ Ajax/ AjaxResponse.php, line 15 
Namespace
Drupal\Core\AjaxView source
class AjaxResponse extends JsonResponse implements AttachmentsInterface {
  use AttachmentsTrait;
  /**
   * The array of ajax commands.
   *
   * @var array
   */
  protected $commands = [];
  /**
   * Add an AJAX command to the response.
   *
   * @param \Drupal\Core\Ajax\CommandInterface $command
   *   An AJAX command object implementing CommandInterface.
   * @param bool $prepend
   *   A boolean which determines whether the new command should be executed
   *   before previously added commands. Defaults to FALSE.
   *
   * @return $this
   *   The current AjaxResponse.
   */
  public function addCommand(CommandInterface $command, $prepend = FALSE) {
    if ($prepend) {
      array_unshift($this->commands, $command
        ->render());
    }
    else {
      $this->commands[] = $command
        ->render();
    }
    if ($command instanceof CommandWithAttachedAssetsInterface) {
      $assets = $command
        ->getAttachedAssets();
      $attachments = [
        'library' => $assets
          ->getLibraries(),
        'drupalSettings' => $assets
          ->getSettings(),
      ];
      $attachments = BubbleableMetadata::mergeAttachments($this
        ->getAttachments(), $attachments);
      $this
        ->setAttachments($attachments);
    }
    return $this;
  }
  /**
   * Gets all AJAX commands.
   *
   * @return array
   *   Returns render arrays for all previously added commands.
   */
  public function &getCommands() {
    return $this->commands;
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| AjaxResponse:: | protected | property | The array of ajax commands. | |
| AjaxResponse:: | public | function | Add an AJAX command to the response. | |
| AjaxResponse:: | public | function | Gets all AJAX commands. | |
| AttachmentsTrait:: | protected | property | The attachments for this response. | |
| AttachmentsTrait:: | public | function | ||
| AttachmentsTrait:: | public | function | ||
| AttachmentsTrait:: | public | function | 
