• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/entity/widget.php
  • Класс: BitrixReportVisualConstructorEntityWidget
  • Вызов: Widget::getReportByGId
public function getReportByGId($reportGId)
{
	foreach ($this->getReports() as $report)
	{
		echo $report->getGId() . PHP_EOL;
		if($report->getGId() === $reportGId)
		{
			return $report;
		}
	}
	return null;
}