• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_config.php
  • Класс: CVoxImplantConfig
  • Вызов: CVoxImplantConfig::SetModeStatus
static function SetModeStatus($mode, $enable)
{
	if (!in_array($mode, Array(self::MODE_LINK, self::MODE_RENT, self::MODE_SIP)))
		return false;

	if ($mode == self::MODE_SIP)
	{
		COption::SetOptionString("main", "~PARAM_PHONE_SIP", $enable? 'Y': 'N');
	}
	else
	{
		COption::SetOptionString("voximplant", "mode_".mb_strtolower($mode), $enable? true: false);
	}

	return true;
}