• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/v2/IoC/ServiceContainer.php
  • Класс: BitrixCatalogv2IoCServiceContainer
  • Вызов: ServiceContainer::getIblockInfo
static function getIblockInfo(int $iblockId): ?IblockInfo
{
	try
	{
		$iblockInfo = static::get(Dependency::IBLOCK_INFO, compact('iblockId'));
	}
	catch (ObjectNotFoundException $exception)
	{
		$iblockInfo = null;
	}

	return $iblockInfo;
}