You are here

public function AddCssCommand::render in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Ajax/AddCssCommand.php \Drupal\Core\Ajax\AddCssCommand::render()
  2. 10 core/lib/Drupal/Core/Ajax/AddCssCommand.php \Drupal\Core\Ajax\AddCssCommand::render()

Implements Drupal\Core\Ajax\CommandInterface:render().

Overrides CommandInterface::render

File

core/lib/Drupal/Core/Ajax/AddCssCommand.php, line 40

Class

AddCssCommand
An AJAX command for adding css to the page via ajax.

Namespace

Drupal\Core\Ajax

Code

public function render() {
  return [
    'command' => 'add_css',
    'data' => $this->styles,
  ];
}