PHP code example of alex19pov31 / bitrix-orm-helper

1. Go to this page and download the library: Download alex19pov31/bitrix-orm-helper library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

alex19pov31 / bitrix-orm-helper example snippets


$data = DataManager::init('b_iblock') // Имя таблицы - b_iblock
    ->getList([
        'filter' => [ // Выборка элементов с ID > 0
            '>ID' => 0,
        ],
        'cache' => [
            'ttl' => 86400, // Кешируем данные на сутки
        ],
    ])
    ->fetchAll(); 

$manager = new DataManager('b_iblock')
$manager->reset(); // Удаляем ранее сгенерированный класс для работы с данными
$manager->setFieldsRaw([ // Описание полей в формате bitrix
	'ID' => [
		'data_type' => 'integer',
        'r->addField('NAME', 'string'); // Добаление нового поля
$datamanager = $manager->getDataManager(); // получаем объект для работы с данными
$data = $datamanager->getList([
        'filter' => [ // Выборка элементов с ID > 0
            '>ID' => 0,
        ],
        'cache' => [
            'ttl' => 86400, // Кешируем данные на сутки
        ],
    ])
    ->fetchAll();