• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/lib/bizproctype/usertypepropertydiskfile.php
  • Класс: BitrixIblockBizprocTypeUserTypePropertyDiskFile
  • Вызов: UserTypePropertyDiskFile::renderMobileControl
static function renderMobileControl(FieldType $fieldType, array $field, $value): string
	{
		/** @var CMain */
		global $APPLICATION;
		ob_start();
		$APPLICATION->IncludeComponent(
			self::MOBILE_COMPONENT_NAME,
			'',
			[
				'INPUT_NAME' => static::generateControlName($field),
				'INPUT_VALUE' => $value,
				'MULTIPLE' => $fieldType->isMultiple() ? 'Y' : 'N'
			]
		);

		return ob_get_clean();
	}