Eresken

getlist d7

Aug 13th, 2021 (edited)
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2.  
  3. $dbItems = \Bitrix\Iblock\ElementTable::getList([
  4.     'order'         => ['ID' => 'ASC'],
  5.     'select'        => ['ID', 'NAME', 'IBLOCK_ID',],
  6.     'filter'        => ['IBLOCK_ID' => 4],
  7.     'group'         => ['TAGS'],
  8.     'limit'         => 1000,
  9.     'offset'        => 0,
  10.     'count_total'   => 1,
  11.     'runtime'       => [],
  12.     'data_doubling' => false,
  13.     'cache'         => [
  14.         'ttl'         => 3600,
  15.         'cache_joins' => true
  16.     ],
  17. ]);
  18.  
  19.  
Add Comment
Please, Sign In to add comment