Get the language direction (PHP)

// Define variables for the language direction.
$lang = \Drupal::languageManager()->getCurrentLanguage(\Drupal\Core\Language\LanguageInterface::TYPE_CONTENT);
if ($lang->getDirection() === "ltr") {
  $variables['lang_direction'] = 'ltr';
}
else {
  $variables['lang_direction'] = 'rtl';
}

Define variables for the language direction.

Last updated

Was this helpful?