• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/internal/report.php
  • Класс: Bitrix\Report\VisualConstructor\Internal\ReportTable
  • Вызов: ReportTable::getMap
static function getMap()
{
	return array(
		new IntegerField('ID', array(
			'primary' => true,
			'autocomplete' => true,
		)),
		new IntegerField('WIDGET_ID'),
		new StringField('GID'),
		new IntegerField('WEIGHT'),
		new StringField('REPORT_CLASS'),
		new DateField('CREATED_DATE'),
		new DateField('UPDATED_DATE'),
		new ReferenceField(
			'WIDGET',
			'Bitrix\Report\VisualConstructor\Internal\WidgetTable',
			array('=this.WIDGET_ID' => 'ref.ID')
		)
	);
}