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