• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/classes/general/im_contact_list.php
  • Класс: CAllIMContactList
  • Вызов: CAllIMContactList::GetUserNameTemplate
static function GetUserNameTemplate($siteId = false, $langId = false, $getDefault = false)
{
	if (!$langId && defined('LANGUAGE_ID'))
	{
		$langId = LANGUAGE_ID;
	}

	if (in_array($langId, Array('ru', 'kz', 'by', 'ua')))
	{
		$template = "#LAST_NAME# #NAME#";
	}
	else
	{
		$template = "#LAST_NAME#, #NAME#";
	}

	return $getDefault? $template: COption::GetOptionString("im", "user_name_template", $template, $siteId);
}