• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_account.php
  • Класс: CVoxImplantAccount
  • Вызов: CVoxImplantAccount::GetAccountLang
public function GetAccountLang($allowUpdate = true)
{
	if ($this->account_lang == '')
	{
		$this->account_lang = COption::GetOptionString("voximplant", self::ACCOUNT_LANG);
		if ($this->account_lang == '')
		{
			if(!$allowUpdate)
				return false;

			if (!$this->UpdateAccountInfo())
				return false;
		}
	}
	return $this->account_lang;
}