| Current Path : /var/www/homesaver/www/bitrix/modules/fermaofd.ferma/install/ |
| Current File : /var/www/homesaver/www/bitrix/modules/fermaofd.ferma/install/functions.php |
<?php
function ofdferma_getCatalogIBlocks()
{
$result = [];
$res = CCatalog::GetList();
while ($catalog = $res->Fetch()) {
if ($catalog['PRODUCT_IBLOCK_ID'] !== '0') {
continue;
}
$result[] = $catalog;
}
return $result;
}
function ofdferma_getPaymentTypeProperty($catalogIBlockId)
{
$propRes = CIBlockProperty::GetList(array(), array(
'IBLOCK_ID' => $catalogIBlockId,
'CODE' => 'OFD_FERMA_PAYMENT_TYPE',
));
return $propRes->Fetch();
}