You are here

function LanguageNegotiatorInterface::saveConfiguration in Zircon Profile 8.0

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

Saves a list of language negotiation methods for a language type.

Parameters

string $type: The language type.

int[] $enabled_methods: An array of language negotiation method weights keyed by method ID.

1 method overrides LanguageNegotiatorInterface::saveConfiguration()
LanguageNegotiator::saveConfiguration in core/modules/language/src/LanguageNegotiator.php
Saves a list of language negotiation methods for a language type.

File

core/modules/language/src/LanguageNegotiatorInterface.php, line 195
Contains \Drupal\language\LanguageNegotiatorInterface.

Class

LanguageNegotiatorInterface
Common interface for language negotiation services.

Namespace

Drupal\language

Code

function saveConfiguration($type, $enabled_methods);