• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/entity/dashboardrow.php
  • Класс: BitrixReportVisualConstructorEntityDashboardRow
  • Вызов: DashboardRow::getRowsByGIdsAndBoardId
static function getRowsByGIdsAndBoardId(array $gIds, $boardId)
{
	return static::getModelList(array(
		'select' => array('*'),
		'filter' => Query::filter()->where('BOARD_ID', $boardId)->logic('and')->whereIn('GID', $gIds)
	));
}