function 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();
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.