• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/classes/general/prop_html.php
  • Класс: CIBlockPropertyHTML
  • Вызов: CIBlockPropertyHTML::GetSettingsHTML
static function GetSettingsHTML($arProperty, $strHTMLControlName, &$arPropertyFields)
{
	$arPropertyFields = array(
		"HIDE" => array("ROW_COUNT", "COL_COUNT", "MULTIPLE"),
	);

	$height = 0;
	if (isset($arProperty["USER_TYPE_SETTINGS"]["height"]))
		$height = (int)$arProperty["USER_TYPE_SETTINGS"]["height"];
	if($height <= 0)
		$height = 200;

	return '
	
		'.Loc::getMessage("IBLOCK_PROP_HTML_SETTING_HEIGHT").':
		px
	
	';
}