1С-Битрикс
1
Вклад в тег
Highloadblock\HighloadBlockTable::compileEntity('НАЗВАНИЕ')->getDataClass(); // указываете сразу название вместо ID
function compileEntity($entity): ?Base
{
try {
return Highloadblock\HighloadBlockTable::compileEntity($entity);
} catch (SystemException $systemException) {
// что-нибудь
return null;
}
}
$arItem["INPUT"]
, то компонент кастомизировать придется. Input'ы формируются в component.php: bitrix:catalog.filter: /bitrix/components/bitrix/catalog.filter/component.php:411
(Привет, MVC!). $arResult
компонента. Там вы найдете все, что нужно для формирования input'a (например, массив LIST для атрибута value). Избавьтесь от $arItem["INPUT"]
в своем шаблоне и сформируйте свой input. В Вашем случае это будет выглядеть примерно так:<?foreach ($arItem["LIST"] as $key => $value):?>
<div class="sp_div_block_1">
<label class="section_position__form_sp__label"><?= $arItem["NAME"] ?></label>
<input type="radio" name="<?=$arItem["INPUT_NAME"]?>" value="<?=htmlspecialcharsBx($key)?>"/>
</div>
<?endforeach;?>
Bitrix\Main\Diag\ExceptionHandler
вызывается set_exception_handler(function () {})
. if (!Bitrix\Main\Config\Configuration::getValue('exception_handling')['debug']) { // если 'exception_handling' => ['value' => ['debug' => false]]
set_exception_handler(function ($exception) {
(new Bitrix\Main\Diag\ExceptionHandler())->writeToLog($exception, Bitrix\Main\Diag\ExceptionHandlerLog::UNCAUGHT_EXCEPTION); // логируем
LocalRedirect('/500.php');
exit;
});
}
$arFields = array(
"CALLBACK_FUNC" => "",
"PRODUCT_PROVIDER_CLASS" => "",
"CUSTOM_PRICE" => "Y",
"IGNORE_CALLBACK_FUNC" => "Y"
);