Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. AjaxResponse.php

function AjaxResponse::addCommand

Add an AJAX command to the response.

Parameters

\Drupal\Core\Ajax\CommandInterface $command: An AJAX command object implementing CommandInterface.

bool $prepend: A boolean which determines whether the new command should be executed before previously added commands. Defaults to FALSE.

Return value

$this The current AjaxResponse.

File

core/lib/Drupal/Core/Ajax/AjaxResponse.php, line 38

Class

AjaxResponse
JSON response object for AJAX requests.

Namespace

Drupal\Core\Ajax

Code

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;
}
RSS feed
Powered by Drupal