Skip to content

Instantly share code, notes, and snippets.

View seshoo's full-sized avatar

Sergey Sh seshoo

View GitHub Profile
@Isa3v
Isa3v / iblockItems.php
Last active February 24, 2023 10:19
Bitrix ORM - Быстрые наброски для получения элементов и разделов
<?
use \Bitrix\Main\Loader;
use \Bitrix\Iblock\Iblock;
Loader::includeModule("iblock");
$result = [];
$iblockId = 1;
$iblockProjects = \Bitrix\Iblock\Iblock::wakeUp($iblockId);
$iblockProjectsEntity = $iblockProjects->getEntityDataClass();