function SettingsCommand::__construct

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Ajax/SettingsCommand.php \Drupal\Core\Ajax\SettingsCommand::__construct()
  2. 8.9.x core/lib/Drupal/Core/Ajax/SettingsCommand.php \Drupal\Core\Ajax\SettingsCommand::__construct()
  3. 10 core/lib/Drupal/Core/Ajax/SettingsCommand.php \Drupal\Core\Ajax\SettingsCommand::__construct()

Constructs a SettingsCommand object.

Parameters

array $settings: An array of key/value pairs of JavaScript settings.

bool $merge: Whether the settings should be merged into the global drupalSettings.

File

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

Class

SettingsCommand
AJAX command for adjusting Drupal's JavaScript settings.

Namespace

Drupal\Core\Ajax

Code

public function __construct(array $settings, $merge = FALSE) {
    $this->settings = $settings;
    $this->merge = $merge;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.