• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/entity/dashboardrow.php
  • Класс: BitrixReportVisualConstructorEntityDashboardRow
  • Вызов: DashboardRow::getCurrentUserRowByGId
static function getCurrentUserRowByGId($rowGId)
{
	global $USER;
	if ($USER)
	{
		$row = static::load(
			array(
				'GID' => $rowGId,
				'DASHBOARD.USER_ID' => $USER->getId()
			)
		);
		return $row;
	}
	return null;
}