Hi everyone,
I am new to flarum, and I need to change the dir tag from ltr to rtl when the locale is changing from English to an rtl language,
in > vendor/flarum/core/src/Http/WebAppView.php
I found this :
$view->direction = $this->direction ?: 'ltr';
and i change it to :
if ($this->locales->getLocale() == 'ar') {
$view->direction = 'rtl';
} else {
$view->direction = $this->direction ?: 'ltr';
}
how can I use it in extension without changing the core ?
thanks.