Same name and namespace in other branches
  1. 8.9.x core/modules/language/src/LanguageNegotiator.php \Drupal\language\LanguageNegotiator::getNegotiationMethods()
  2. 9 core/modules/language/src/LanguageNegotiator.php \Drupal\language\LanguageNegotiator::getNegotiationMethods()
2 calls to LanguageNegotiator::getNegotiationMethods()
LanguageNegotiator::saveConfiguration in core/modules/language/src/LanguageNegotiator.php
Saves a list of language negotiation methods for a language type.
LanguageNegotiator::updateConfiguration in core/modules/language/src/LanguageNegotiator.php
Updates the configuration based on the given language types.

File

core/modules/language/src/LanguageNegotiator.php, line 207

Class

LanguageNegotiator
Class responsible for performing language negotiation.

Namespace

Drupal\language

Code

public function getNegotiationMethods($type = NULL) {
  $definitions = $this->negotiatorManager
    ->getDefinitions();
  if (isset($type)) {
    $enabled_methods = $this
      ->getEnabledNegotiators($type);
    $definitions = array_intersect_key($definitions, $enabled_methods);
  }
  return $definitions;
}