• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/input.php
  • Класс: BitrixSaleInternalsInputBase
  • Вызов: Base::getHiddenRecursive
static function getHiddenRecursive($name, $value, $attributes)
{
	if (is_array($value))
	{
		$html = '';

		foreach ($value as $k => $v)
			$html .= self::getHiddenRecursive($name.'['.htmlspecialcharsbx($k).']', $v, $attributes);

		return $html;
	}
	else
	{
		return '';
	}
}