• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/entity/dashboardrow.php
  • Класс: BitrixReportVisualConstructorEntityDashboardRow
  • Вызов: DashboardRow::getRowsWithReportsByBoard
static function getRowsWithReportsByBoard($boardId)
{
	$rows = static::getModelList(array(
		'select' => array('*'),
		'filter' => Query::filter()->where('BOARD_ID', $boardId),
		'with' => array('widgets', 'widgets.configurations', 'widgets.reports.configurations'),
		'order' => array('WEIGHT' => 'ASC'),
	));
	return $rows;
}