• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/component/entitydetails/factorybased.php
  • Класс: Bitrix\Crm\Component\EntityDetails\FactoryBased
  • Вызов: FactoryBased::onPrepareComponentParams
public function onPrepareComponentParams($arParams): array
{
	$arParams['ENTITY_TYPE_ID'] = (int)($arParams['ENTITY_TYPE_ID'] ?? \CCrmOwnerType::Undefined);
	$arParams['ENTITY_ID'] = (int)($arParams['ENTITY_ID'] ?? 0);

	$this->fillParameterFromRequest('categoryId', $arParams);
	$this->fillParameterFromRequest('parentId', $arParams);
	$this->fillParameterFromRequest('parentTypeId', $arParams);

	return parent::onPrepareComponentParams($arParams);
}