public function TranslationManager::reset in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/StringTranslation/TranslationManager.php \Drupal\Core\StringTranslation\TranslationManager::reset()
- 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\StringTranslationCode
public function reset() {
  if ($this->sortedTranslators === NULL) {
    $this->sortedTranslators = $this
      ->sortTranslators();
  }
  foreach ($this->sortedTranslators as $translator) {
    $translator
      ->reset();
  }
}