17 lines
390 B
PHP
17 lines
390 B
PHP
<?php
|
|
|
|
function smarty_block_change_translations_domain($params, $content, Smarty_Internal_Template &$template, &$repeat)
|
|
{
|
|
// Initial call
|
|
if ($repeat) {
|
|
Smarty::$global_tpl_vars['TRANSLATIONS_DOMAIN'][] = $params['domain'];
|
|
}
|
|
|
|
// Ending call
|
|
if (!$repeat) {
|
|
array_pop(Smarty::$global_tpl_vars['TRANSLATIONS_DOMAIN']);
|
|
|
|
return $content;
|
|
}
|
|
}
|