PHP code example of wheatleywl / bx-iblock-helpers
1. Go to this page and download the library: Download wheatleywl/bx-iblock-helpers 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/ */
wheatleywl / bx-iblock-helpers example snippets
use \WheatleyWL\BXIBlockHelpers\IBlockHelper;
// выборка инфоблока по коду
$iblockId = IBlockHelper::getIBlockIdByCode('pages');
// выборка инфоблока по коду и типу инфоблока
$iblockId = IBlockHelper::getIBlockIdByCode('pages', 'content');
// выборка инфоблока по коду, типу инфоблока и идентификатору сайта
$iblockId = IBlockHelper::getIBlockIdByCode('pages', 'content', 's1');
// выборка инфоблока по коду и идентификатору сайта
$iblockId = IBlockHelper::getIBlockIdByCode('pages', null, 's1');