• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/catalog/provider.php
  • Класс: BitrixSaleInternalsCatalogProvider
  • Вызов: Provider::checkContext
static function checkContext(array $context)
{
	$result = new SaleResult();

	if (empty($context['SITE_ID']))
	{
		throw new MainArgumentNullException('SITE_ID');
	}

	if (empty($context['CURRENCY']))
	{
		throw new MainArgumentNullException('CURRENCY');
	}

	return $result;
}