You are here

public function TranslationManager::reset in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/StringTranslation/TranslationManager.php \Drupal\Core\StringTranslation\TranslationManager::reset()
  2. 9 core/lib/Drupal/Core/StringTranslation/TranslationManager.php \Drupal\Core\StringTranslation\TranslationManager::reset()

Resets translation cache.

Since most translation systems implement some form of caching, this provides a way to delete that cache.

Overrides TranslatorInterface::reset

File

core/lib/Drupal/Core/StringTranslation/TranslationManager.php, line 164

Class

TranslationManager
Defines a chained translation implementation combining multiple translators.

Namespace

Drupal\Core\StringTranslation

Code

public function reset() {
  if ($this->sortedTranslators === NULL) {
    $this->sortedTranslators = $this
      ->sortTranslators();
  }
  foreach ($this->sortedTranslators as $translator) {
    $translator
      ->reset();
  }
}