LanguageNegotiationSelected.php

Same filename and directory in other branches
  1. 9 core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationSelected.php
  2. 8.9.x 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\Core\StringTranslation\TranslatableMarkup;
use Drupal\language\Attribute\LanguageNegotiation;
use Drupal\language\LanguageNegotiationMethodBase;
use Symfony\Component\HttpFoundation\Request;

/**
 * Class for identifying language from a selected language.
 */
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.