Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
18 lines
304 B
PHP
18 lines
304 B
PHP
<?php
|
|
|
|
use App\Helpers\LocaleHelper;
|
|
|
|
if (! function_exists('htmldir')) {
|
|
/**
|
|
* Get the direction: left to right/right to left.
|
|
*
|
|
* @return string
|
|
*
|
|
* @see LocaleHelper::getDirection()
|
|
*/
|
|
function htmldir()
|
|
{
|
|
return LocaleHelper::getDirection();
|
|
}
|
|
}
|