function LocaleProjectStorage::disableAll
Same name in other branches
- 9 core/modules/locale/src/LocaleProjectStorage.php \Drupal\locale\LocaleProjectStorage::disableAll()
- 8.9.x core/modules/locale/src/LocaleProjectStorage.php \Drupal\locale\LocaleProjectStorage::disableAll()
- 11.x core/modules/locale/src/LocaleProjectStorage.php \Drupal\locale\LocaleProjectStorage::disableAll()
File
-
core/
modules/ locale/ src/ LocaleProjectStorage.php, line 147
Class
- LocaleProjectStorage
- Provides the locale project storage system using a key value store.
Namespace
Drupal\localeCode
public function disableAll() {
$projects = $this->keyValueStore
->getAll();
foreach (array_keys($projects) as $key) {
$projects[$key]['status'] = 0;
if (isset($this->cache[$key])) {
$this->cache[$key] = $projects[$key];
}
}
$this->keyValueStore
->setMultiple($projects);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.