public function TranslationManager::reset

public 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 169

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!StringTranslation!TranslationManager.php/function/TranslationManager::reset/8.1.x