public function LocaleProjectStorage::setMultiple in Drupal 8
Same name and namespace in other branches
- 9 core/modules/locale/src/LocaleProjectStorage.php \Drupal\locale\LocaleProjectStorage::setMultiple()
- 10 core/modules/locale/src/LocaleProjectStorage.php \Drupal\locale\LocaleProjectStorage::setMultiple()
Creates or updates multiple project records.
Parameters
array $data: An associative array of key/value pairs.
Overrides LocaleProjectStorageInterface::setMultiple
1 call to LocaleProjectStorage::setMultiple()
- LocaleProjectStorage::set in core/
modules/ locale/ src/ LocaleProjectStorage.php - Creates or updates the project record.
File
- core/
modules/ locale/ src/ LocaleProjectStorage.php, line 96
Class
- LocaleProjectStorage
- Provides the locale project storage system using a key value store.
Namespace
Drupal\localeCode
public function setMultiple(array $data) {
foreach ($data as $key => $value) {
$this->cache[$key] = $value;
}
$this->keyValueStore
->setMultiple($data);
}