You are here

public function SettingsCommand::render in Drupal 8

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

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

Overrides CommandInterface::render

File

core/lib/Drupal/Core/Ajax/SettingsCommand.php, line 55

Class

SettingsCommand
AJAX command for adjusting Drupal's JavaScript settings.

Namespace

Drupal\Core\Ajax

Code

public function render() {
  return [
    'command' => 'settings',
    'settings' => $this->settings,
    'merge' => $this->merge,
  ];
}