• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/classes/general/timeman_report_full.php
  • Класс: CUserReportFull
  • Вызов: CUserReportFull::prepareDailyReportContent
private function prepareDailyReportContent(array $report, array $entryIds, array $entriesInfo): array
{
	if (
		($report["REPORT"] ?? '') <> ''
		&& !($entriesInfo["REPORT_ID"] ?? null)
	)
	{
		$entriesInfo["REPORT"] = ($entriesInfo["REPORT"] ?? '')
			. $this->getReportMessageHtml(
				$report["REPORT_DATE"],
				$report["REPORT"]
			)
		;
		$entryIds[] = $report["ENTRY_ID"];
	}

	return [$entriesInfo, $entryIds];
}