• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/helper/widget.php
  • Класс: BitrixReportVisualConstructorHelperWidget
  • Вызов: Widget::getDashboard
static function getDashboard($boardKey)
{
	/** @var CUser $USER */
	global $USER;
	$dashboard = null;
	$dashboardForUser = DashboardEntity::loadByBoardKeyAndUserId($boardKey, $USER->getid());
	if ($dashboardForUser)
	{
		$dashboard = DashboardEntity::getBoardWithRowsAndWidgetsByBoardKeyUserId($boardKey, $USER->getId());
	}
	else
	{
		$dashboard = DashboardEntity::getBoardWithRowsAndWidgetsByBoardKeyUserId($boardKey, 0);
	}

	return $dashboard;
}