SettingsCommand::__construct

public SettingsCommand::__construct(array $settings, $merge = FALSE)

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 47

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;
}
doc_Drupal
2016-10-29 09:42:15
Comments
Leave a Comment

Please login to continue.