function LocaleProjectStorage::set
Same name and namespace in other branches
- 8.9.x core/modules/locale/src/LocaleProjectStorage.php \Drupal\locale\LocaleProjectStorage::set()
- 10 core/modules/locale/src/LocaleProjectStorage.php \Drupal\locale\LocaleProjectStorage::set()
- 11.x core/modules/locale/src/LocaleProjectStorage.php \Drupal\locale\LocaleProjectStorage::set()
Creates or updates the project record.
Parameters
string $key: The key of the data to store.
mixed $value: The data to store.
Overrides LocaleProjectStorageInterface::set
File
-
core/
modules/ locale/ src/ LocaleProjectStorage.php, line 89
Class
- LocaleProjectStorage
- Provides the locale project storage system using a key value store.
Namespace
Drupal\localeCode
public function set($key, $value) {
$this->setMultiple([
$key => $value,
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.