Your IP : 18.119.235.255


Current Path : /home/bitrix/ext_www/dev.easy-comfort.com.ua/bitrix/components/bitrix/im.messenger/
Upload File :
Current File : /home/bitrix/ext_www/dev.easy-comfort.com.ua/bitrix/components/bitrix/im.messenger/tools.php

<?

function IMIncludeJSLangFile($lang_file)
{
	$pathLang = BX_ROOT.'/modules/im/lang/'.LANGUAGE_ID.'/';
	
	$mess_lang = array();

	if ($pathLang.$lang_file)
	{
		$lang_filename = $_SERVER['DOCUMENT_ROOT'].$pathLang.$lang_file;
		if (file_exists($lang_filename))
		{
			$mess_lang = __IncludeLang($lang_filename, true);
			$GLOBALS['APPLICATION']->AddHeadString('<script type="text/javascript">BX.message('.CUtil::PhpToJSObject($mess_lang, false).')</script>', true);
		}
	}

	return true;	
}

?>