• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_user.php
  • Класс: CVoxImplantUser
  • Вызов: CVoxImplantUser::GetCallByPhone
static function GetCallByPhone($userId)
{
	$userId = intval($userId);
	if(!$userId)
		return false;

	if (!self::GetPhoneActive($userId))
		return false;

	return CUserOptions::GetOption('voximplant', 'call_by_phone', true, $userId);
}