• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/defaultsite.php
  • Класс: BitrixSaleLocationDefaultSiteTable
  • Вызов: DefaultSiteTable::checkSiteId
static function checkSiteId($siteId)
{
	$siteId = Assert::expectStringNotNull($siteId, '$siteId');

	$res = MainSiteTable::getList(array('filter' => array('LID' => $siteId)))->fetch();
	if(!$res)
		throw new MainArgumentOutOfRangeException(Loc::getMessage('SALE_LOCATION_DEFAULTSITE_ENTITY_SITE_ID_UNKNOWN_EXCEPTION'));

	return $siteId;
}