Hogyan lehet a jelenlegi nyelven a Drupal 8 | Drupal 8

Hogyan lehet a jelenlegi nyelven a Drupal 8

Submitted by editor on Fri, 11/06/2015 - 10:57
Question

Hogyan lehet az aktuálisan kiválasztott nyelv (aktuális oldal vagy felhasználói nyelv) programból a Drupal8 ?

Drupal 8

//a lanuage kód:
$language = \Drupal::languageManager()->getCurrentLanguage()->getId();

//a nyelv neve:
$language =  \Drupal::languageManager()->getCurrentLanguage()->getName();

 

Drupal 7

global $language;
$language=$language->language;

Comments

Navneet Singh (not verified)

Sun, 01/15/2017 - 10:18

Drupal 7:

global $language;
// return lang code;
return $language->language;

Drupal 8:

return $language = \Drupal::languageManager()->getCurrentLanguage()->getId();

Add new comment

Plain text

  • No HTML tags allowed.
  • Lines and paragraphs break automatically.
  • Web page addresses and email addresses turn into links automatically.