• Модуль: currency
  • Путь к файлу: ~/bitrix/modules/currency/lib/integration/iblockmoneyproperty.php
  • Класс: BitrixCurrencyIntegrationIblockMoneyProperty
  • Вызов: IblockMoneyProperty::GetUIEntityEditorProperty
static function GetUIEntityEditorProperty($settings, $value)
{
	if (method_exists(BaseForm::class, 'getAdditionalMoneyValues'))
	{
		return [
			'type' => $settings['MULTIPLE'] === 'Y' ? 'multimoney' : 'money',
		];
	}

	return [
		'type' => 'money',
	];
}