• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/handler/base.php
  • Класс: BitrixReportVisualConstructorHandlerBase
  • Вызов: Base::getNameForFormElement
protected function getNameForFormElement(BaseValuable $element)
{
	$name = '';

	$configuration = $this->getConfiguration($element->getKey());
	$id = '[new]';
	if ($configuration && $configuration->getId())
	{
		$id = '[old][' . $configuration->getGId() . ']';
	}

	$name .= '[configurations]' . $id . '[' . $element->getKey() . ']';
	return $name;
}