LanguageNegotiationSelected.php

Same filename and directory in other branches
  1. 8.9.x core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationSelected.php
  2. 10 core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationSelected.php
  3. 11.x core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationSelected.php

Namespace

Drupal\language\Plugin\LanguageNegotiation

File

core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationSelected.php

View source
<?php

namespace Drupal\language\Plugin\LanguageNegotiation;

use Drupal\language\LanguageNegotiationMethodBase;
use Symfony\Component\HttpFoundation\Request;

/**
 * Class for identifying language from a selected language.
 *
 * @LanguageNegotiation(
 *   id = Drupal\language\Plugin\LanguageNegotiation\LanguageNegotiationSelected::METHOD_ID,
 *   weight = 12,
 *   name = @Translation("Selected language"),
 *   description = @Translation("Language based on a selected language."),
 *   config_route_name = "language.negotiation_selected"
 * )
 */
class LanguageNegotiationSelected extends LanguageNegotiationMethodBase {
    
    /**
     * The language negotiation method id.
     */
    const METHOD_ID = 'language-selected';
    
    /**
     * {@inheritdoc}
     */
    public function getLangcode(Request $request = NULL) {
        $langcode = NULL;
        if ($this->languageManager) {
            $langcode = $this->config
                ->get('language.negotiation')
                ->get('selected_langcode');
        }
        return $langcode;
    }

}

Classes

Title Deprecated Summary
LanguageNegotiationSelected Class for identifying language from a selected language.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.