• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/monitor/history/reportcomment.php
  • Класс: BitrixTimemanMonitorHistoryReportComment
  • Вызов: ReportComment::getOnDate
static function getOnDate(int $userId, Date $date): array
{
	return MonitorReportCommentTable::getList([
		'select' => [
			'TEXT' => 'COMMENT',
			'DESKTOP_CODE',
		],
		'filter' => [
			'=DATE_LOG' => $date,
			'=USER_ID' => $userId,
		]
	])->fetchAll();
}