• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/classes/general/timeman_report_full.php
  • Класс: CUserReportFull
  • Вызов: CUserReportFull::isShowReportForm
private function isShowReportForm(string $dateSubmit): bool
{
	if (!$dateSubmit)
	{
		return false;
	}

	$fullFormat = CSite::getDateFormat("FULL", SITE_ID);
	$dateSubmitTimeStamp = MakeTimeStamp($dateSubmit, $fullFormat);
	$currentTimeWithOffset = time() + CTimeZone::getOffset();

	return ($dateSubmitTimeStamp <= $currentTimeWithOffset);
}