config = $config; $this->languageManager = $language_manager; $this->negotiator = $negotiator; $this->negotiator->setCurrentUser($current_user); $this->configSubscriber = $config_subscriber; } /** * {@inheritdoc} */ public function processInbound($path, Request $request) { if (!empty($path)) { $scope = 'inbound'; if (!isset($this->processors[$scope])) { $this->initProcessors($scope); } foreach ($this->processors[$scope] as $instance) { $path = $instance->processInbound($path, $request); } } return $path; } /** * {@inheritdoc} */ public function processOutbound($path, &$options = [], Request $request = NULL, BubbleableMetadata $bubbleable_metadata = NULL) { if (!isset($this->multilingual)) { $this->multilingual = $this->languageManager->isMultilingual(); } if ($this->multilingual) { $this->negotiator->reset(); $scope = 'outbound'; if (!isset($this->processors[$scope])) { $this->initProcessors($scope); } foreach ($this->processors[$scope] as $instance) { $path = $instance->processOutbound($path, $options, $request, $bubbleable_metadata); } // No language dependent path allowed in this mode. if (empty($this->processors[$scope])) { unset($options['language']); } } return $path; } /** * Initializes the local cache for language path processors. * * @param string $scope * The scope of the processors: "inbound" or "outbound". */ protected function initProcessors($scope) { $interface = '\Drupal\Core\PathProcessor\\' . Unicode::ucfirst($scope) . 'PathProcessorInterface'; $this->processors[$scope] = []; $weights = []; foreach ($this->languageManager->getLanguageTypes() as $type) { foreach ($this->negotiator->getNegotiationMethods($type) as $method_id => $method) { if (!isset($this->processors[$scope][$method_id])) { $reflector = new \ReflectionClass($method['class']); if ($reflector->implementsInterface($interface)) { $this->processors[$scope][$method_id] = $this->negotiator->getNegotiationMethodInstance($method_id); $weights[$method_id] = $method['weight']; } } } } // Sort the processors list, so that their functions are called in the // order specified by the weight of the methods. uksort($this->processors[$scope], function ($method_id_a, $method_id_b) use ($weights) { $a_weight = $weights[$method_id_a]; $b_weight = $weights[$method_id_b]; if ($a_weight == $b_weight) { return 0; } return ($a_weight < $b_weight) ? -1 : 1; }); } /** * Initializes the injected event subscriber with the language path processor. * * The language path processor service is registered only on multilingual * site configuration, thus we inject it in the event subscriber only when * it is initialized. */ public function initConfigSubscriber() { $this->configSubscriber->setPathProcessorLanguage($this); } /** * Resets the collected processors instances. */ public function reset() { $this->processors = []; } }