class CurrentLangcode in More Global Variables 8
Class CurrentLangcode.
@package Drupal\mgv\Plugin\GlobalVariable
@Mgv( id = "current_langcode", );
Hierarchy
- class \Drupal\mgv\Plugin\GlobalVariable implements GlobalVariableInterface uses StringTranslationTrait
- class \Drupal\mgv\Plugin\GlobalVariable\CurrentLangcode
Expanded class hierarchy of CurrentLangcode
File
- src/
Plugin/ GlobalVariable/ CurrentLangcode.php, line 16
Namespace
Drupal\mgv\Plugin\GlobalVariableView source
class CurrentLangcode extends GlobalVariable {
/**
* {@inheritdoc}
*/
public function getValue() {
// Print the current langcode. This could be useful if you want to do a
// "Back to Search" type feature, but need to ensure you keep the current
// selected language e.g. "/fr/node/123" and "/ga/node/123".
return \Drupal::languageManager()
->getCurrentLanguage()
->getId();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CurrentLangcode:: |
public | function |
Method that implement generating value of global variable. Overrides GlobalVariableInterface:: |
|
GlobalVariable:: |
private | property | ||
GlobalVariable:: |
private | property | ||
GlobalVariable:: |
public | function | Dependency getter. | |
GlobalVariable:: |
public | function | GlobalVariable constructor. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |