• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/entity/dashboardrow.php
  • Класс: BitrixReportVisualConstructorEntityDashboardRow
  • Вызов: DashboardRow::getMapReferenceAttributes
static function getMapReferenceAttributes()
{
	return array(
		'widgets' => array(
			'type' => Common::ONE_TO_MANY,
			'targetEntity' => Widget::getClassName(),
			'mappedBy' => 'row'
		),
		'dashboard' => array(
			'type' => Common::MANY_TO_ONE,
			'targetEntity' => Dashboard::getClassName(),
			'inversedBy' => 'rows',
			'join' => array(
				'field' => array('boardId', 'id')
			)
		),
	);
}