You are here

public function DomainLangHandler::saveConfiguration in Domain Lang 8

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.

Overrides DomainLangHandlerInterface::saveConfiguration

1 call to DomainLangHandler::saveConfiguration()
DomainLangHandler::updateConfiguration in src/DomainLangHandler.php
Updates the configuration based on the given language types.

File

src/DomainLangHandler.php, line 219

Class

DomainLangHandler
Domain language handling.

Namespace

Drupal\domain_lang

Code

public function saveConfiguration($type, array $enabled_methods) {

  // As configurable language types might have changed, we reset the cache.
  $this->languageManager
    ->reset();
  $definitions = $this->languageNegotiator
    ->getNegotiationMethods();
  $default_types = $this->languageManager
    ->getLanguageTypes();

  // Order the language negotiation method list by weight.
  asort($enabled_methods);
  foreach ($enabled_methods as $method_id => $weight) {
    if (isset($definitions[$method_id])) {
      $method = $definitions[$method_id];

      // If the language negotiation method does not express any preference
      // about types, make it available for any configurable type.
      $types = array_flip(!empty($method['types']) ? $method['types'] : $default_types);

      // Check whether the method is defined and has the right type.
      if (!isset($types[$type])) {
        unset($enabled_methods[$method_id]);
      }
    }
    else {
      unset($enabled_methods[$method_id]);
    }
  }
  $this
    ->getLanguageTypesConfig()
    ->set('negotiation.' . $type . '.enabled', $enabled_methods)
    ->save();
}