public function AjaxResponse::addCommand in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Ajax/AjaxResponse.php \Drupal\Core\Ajax\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
AjaxResponse The current AjaxResponse.
File
- core/
lib/ Drupal/ Core/ Ajax/ AjaxResponse.php, line 43 - Contains \Drupal\Core\Ajax\AjaxResponse.
Class
- AjaxResponse
- JSON response object for AJAX requests.
Namespace
Drupal\Core\AjaxCode
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;
}