1. Go to this page and download the library: Download alexpago/bitrix-models library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namespaceLocal\Models\Iblock;
usePago\Bitrix\Models\IModel;
usePago\Bitrix\Models\Queries\Builder;
/**
* @property array CATALOG_ITEMS // Привязка к основным продуктам
* @property string PRICE // Стоимость
* @method static Builder|$this query()
* @method Builder|$this get()
* @method Builder|$this first()
* @method Builder|$this whereCatalogItems(mixed $data, string $operator = '') // Привязка к основным продуктам
* @method Builder|$this wherePrice(mixed $data, string $operator = '') // Стоимость
*/classCatalogextendsIModel{
}
// Название таблицы через константуconst TABLE_NAME = 'b_hlblock_entity';
/**
* Название таблицы через переопределение метода
* @return string
*/publicstaticfunctiongetTableName(): string{
return'b_user'; // Название таблицы
}
CatalogModel::query()
->withProperties()
->whereCityId(1)
->orWhere('CITY_ID', 2)
->whereIblockSectionId(10)
->whereId(5, '>=') // по умолчанию всегда оператор = (равно), заполнять при необходимости указать другой
->get();
CatalogModel::query()->whereId(100)->first(); // first() вернет экземпляр класса
// SALONS и CITY - свойства инфоблока. Обратите внимание, префикс PROPERTY указывать не нужно
CatalogModel::query()->setSelect(['ID', 'CODE', 'NAME', 'SALONS', 'CITY'])->get();