• Модуль: controller
  • Путь к файлу: ~/bitrix/modules/controller/classes/general/controllergroup.php
  • Класс: CControllerGroupSettings
  • Вызов: CControllerGroupSettings::GenerateInput
static function GenerateInput($id, $arInfo, $curVal = false, $context = 'default')
{
	$res = '';
	if ($curVal === false)
		$strDis = ' disabled ';
	else
		$strDis = '';

	$arInput = $arInfo[2];
	if ($arInput[0] == 'checkbox')
	{
		$res .= '';
	}
	elseif ($arInput[0] == 'text')
	{
		$res .= '';
	}
	elseif ($arInput[0] == 'selectbox')
	{
		$res .= '';
	}
	elseif ($arInput[0] == "textarea")
	{
		$res .= '
'; } return $res; }