• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/lib/basetype/file.php
  • Класс: BitrixBizprocBaseTypeFile
  • Вызов: File::renderPublicSelectableControlSingle
static function renderPublicSelectableControlSingle(FieldType $fieldType, array $field, $value)
{
	$name = static::generateControlName($field);
	$className = static::generateControlClassName($fieldType, $field);
	$className = str_replace('file', 'file-selectable', $className);

	return sprintf(
		'',
		htmlspecialcharsbx($className),
		htmlspecialcharsbx($name),
		htmlspecialcharsbx((string)$value),
		htmlspecialcharsbx($fieldType->getDescription()),
		htmlspecialcharsbx(MainWebJson::encode($fieldType->getProperty()))
	);
}