• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Broker/IBlockSection.php
  • Класс: Bitrix\Crm\Service\Broker\IBlockSection
  • Вызов: IBlockSection::loadEntry
protected function loadEntry(int $id): ?array
{
	if (!Loader::includeModule('iblock'))
	{
		return null;
	}
	if ($id <= 0)
	{
		return null;
	}

	$row = Iblock\SectionTable::getList([
		'select' => [
			'ID',
			'NAME',
		],
		'filter' => [
			'=ID' => $id,
		],
	])->fetch();

	return (!empty($row) ? $row : null);
}