• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/tree.php
  • Класс: BitrixSaleLocationis
  • Вызов: is::getNodeInfo
static function getNodeInfo($primary)
{
	$primary = Assert::expectIntegerPositive($primary, '$primary');

	$node = self::getById($primary)->fetch();
	if(!isset($node['ID']))
	{
		throw new MainSystemException(Loc::getMessage('SALE_LOCATION_TREE_ENTITY_NODE_NOT_FOUND_EXCEPTION'));
	}

	return $node;
}