hook_language_negotiation_info_alter(array &$negotiation_info)
Perform alterations on language negotiation methods.
Parameters
array $negotiation_info: Array of language negotiation method definitions.
Related topics
- Hooks
- Define functions that alter the behavior of Drupal core.
File
- core/modules/language/language.api.php, line 74
- Hooks provided by the Language module.
Code
1 2 3 4 5 | function hook_language_negotiation_info_alter( array & $negotiation_info ) { if (isset( $negotiation_info [ 'custom_language_method' ])) { $negotiation_info [ 'custom_language_method' ][ 'config' ] = 'admin/config/regional/language/detection/custom-language-method' ; } } |
Please login to continue.