function ConfigurableLanguageManager::reset
Overrides LanguageManager::reset
File
- 
              core/modules/ language/ src/ ConfigurableLanguageManager.php, line 241 
Class
- ConfigurableLanguageManager
- Overrides default LanguageManager to provide configured languages.
Namespace
Drupal\languageCode
public function reset($type = NULL) {
  if (!isset($type)) {
    $this->initialized = FALSE;
    $this->negotiatedLanguages = [];
    $this->negotiatedMethods = [];
    $this->languageTypes = NULL;
    $this->languageTypesInfo = NULL;
    $this->languages = [];
    if ($this->negotiator) {
      $this->negotiator
        ->reset();
    }
  }
  elseif (isset($this->negotiatedLanguages[$type])) {
    unset($this->negotiatedLanguages[$type]);
    unset($this->negotiatedMethods[$type]);
  }
  return $this;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
