engelsystem/includes/helper/internationalization_helper...

77 lines
1.6 KiB
PHP
Raw Normal View History

2013-11-25 19:12:19 +01:00
<?php
2015-07-12 13:45:47 +02:00
/**
* Return currently active locale
2017-01-03 03:22:48 +01:00
*
* @return string
2015-07-12 13:45:47 +02:00
*/
2017-01-02 03:57:23 +01:00
function locale()
{
return $_SESSION['locale'];
2015-07-12 13:45:47 +02:00
}
/**
* Returns two letter language code from currently active locale
2017-01-03 03:22:48 +01:00
*
* @return string
2015-07-12 13:45:47 +02:00
*/
2017-01-02 03:57:23 +01:00
function locale_short()
{
return substr(locale(), 0, 2);
2015-07-12 13:45:47 +02:00
}
2013-11-25 19:12:19 +01:00
/**
* Initializes gettext for internationalization and updates the sessions locale to use for translation.
*/
2017-01-02 03:57:23 +01:00
function gettext_init()
{
$locales = config('locales');
$default_locale = config('default_locale');
2017-01-02 03:57:23 +01:00
if (isset($_REQUEST['set_locale']) && isset($locales[$_REQUEST['set_locale']])) {
$_SESSION['locale'] = $_REQUEST['set_locale'];
2017-01-02 15:43:36 +01:00
} elseif (!isset($_SESSION['locale'])) {
2017-01-02 03:57:23 +01:00
$_SESSION['locale'] = $default_locale;
}
2017-01-02 03:57:23 +01:00
gettext_locale();
bindtextdomain('default', realpath(__DIR__ . '/../../locale'));
bind_textdomain_codeset('default', 'UTF-8');
textdomain('default');
2013-11-25 19:12:19 +01:00
}
2013-12-26 13:34:48 +01:00
/**
* Swich gettext locale.
*
2017-01-02 03:57:23 +01:00
* @param string $locale
2013-12-26 13:34:48 +01:00
*/
2017-01-02 03:57:23 +01:00
function gettext_locale($locale = null)
{
if ($locale == null) {
$locale = $_SESSION['locale'];
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
putenv('LC_ALL=' . $locale);
setlocale(LC_ALL, $locale);
2013-12-26 13:34:48 +01:00
}
2013-11-25 19:12:19 +01:00
/**
* Renders language selection.
*
2017-01-03 03:22:48 +01:00
* @return array
2013-11-25 19:12:19 +01:00
*/
2017-01-02 03:57:23 +01:00
function make_langselect()
{
2017-01-03 14:12:17 +01:00
$url = $_SERVER['REQUEST_URI'] . (strpos($_SERVER['REQUEST_URI'], '?') > 0 ? '&' : '?') . 'set_locale=';
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$items = [];
foreach (config('locales') as $locale => $name) {
2017-01-02 15:43:36 +01:00
$items[] = toolbar_item_link(
2017-01-03 14:12:17 +01:00
htmlspecialchars($url) . $locale,
2017-01-02 15:43:36 +01:00
'',
'<img src="pic/flag/' . $locale . '.png" alt="' . $name . '" title="' . $name . '"> ' . $name
);
2017-01-02 03:57:23 +01:00
}
return $items;
2013-11-25 19:12:19 +01:00
}