function LocaleTranslation::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/modules/locale/src/LocaleTranslation.php, line 146

Class

LocaleTranslation
String translator using the locale module.

Namespace

Drupal\locale

Code

public function reset() {
  unset($this->translateEnglish);
  $this->translations = [];
}

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