• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/exchange/onec/settingsbase.php
  • Класс: BitrixSaleExchangeOneCSettingsBase
  • Вызов: SettingsBase::resolveName
protected function resolveName($entityTypeId)
{
	if(!is_int($entityTypeId))
	{
		throw new ArgumentTypeException('entityTypeID', 'integer');
	}

	if(!EntityType::IsDefined($entityTypeId))
	{
		throw new NotSupportedException("Entity ID: '{$entityTypeId}' is not supported in current context");
	}

	return EntityType::ResolveName($entityTypeId);
}