n Load specific library for RTL language in Drupal 8 | CodimTh

Please Disable Your Browser Adblock Extension for our site and Refresh This Page!

our ads are user friendly, we do not serve popup ads. We serve responsible ads!

Refresh Page
Skip to main content
On . By CodimTh
Category:

Question

How to load specific library for RTL language in Drupal 8?

Solution

/**
 * @param $variables
 * Load specific library for pages with html attribute of RTL
 */
function mymodule_preprocess_html(&$variables)
{
    if ($variables['html_attributes']['dir'] == 'rtl') {
        /**
         * for arabic language for example
         */
        $variables['#attached']['library'][] = 'mymodule/rtl-css';
        $variables['#attached']['library'][] = 'mymodule/rtl-js';
    } else {
        /**
         * for english or french language
         */
        $variables['#attached']['library'][] = 'mymodule/ltr-css';
        $variables['#attached']['library'][] = 'mymodule/ltr-js';
    }
}

 

 

 

Riadh Rahmi

Senior Web Developer PHP/Drupal & Laravel

I am a senior web developer, I have experience in planning and developing large scale dynamic web solutions especially in Drupal & Laravel.

Web Posts

Search

Page Facebook