function State::setMultiple

Saves key/value pairs.

Parameters

array $data: An associative array of key/value pairs.

Overrides StateInterface::setMultiple

File

core/lib/Drupal/Core/State/State.php, line 90

Class

State
Provides the state system using a key value store.

Namespace

Drupal\Core\State

Code

public function setMultiple(array $data) {
  foreach ($data as $key => $value) {
    $this->cache[$key] = $value;
  }
  $this->keyValueStore
    ->setMultiple($data);
}

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