You are here

public function LanguageNegotiatorInterface::getNegotiationMethods in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/language/src/LanguageNegotiatorInterface.php \Drupal\language\LanguageNegotiatorInterface::getNegotiationMethods()
  2. 10 core/modules/language/src/LanguageNegotiatorInterface.php \Drupal\language\LanguageNegotiatorInterface::getNegotiationMethods()

Returns the language negotiation methods enabled for a language type.

Parameters

string $type: (optional) The language type. If no type is specified all the method definitions are returned.

Return value

array[] An array of language negotiation method definitions keyed by method id.

1 method overrides LanguageNegotiatorInterface::getNegotiationMethods()
LanguageNegotiator::getNegotiationMethods in core/modules/language/src/LanguageNegotiator.php
Returns the language negotiation methods enabled for a language type.

File

core/modules/language/src/LanguageNegotiatorInterface.php, line 142

Class

LanguageNegotiatorInterface
Common interface for language negotiation services.

Namespace

Drupal\language

Code

public function getNegotiationMethods($type = NULL);