• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/base/date.php
  • Класс: BitrixCalendarCoreBaseDate
  • Вызов: Date::__construct
public function __construct(TypeDate $date = null, string $dateFormat = null)
{
	$this->date = $date ?? Util::getDateObject(null, false, (new DateTime())->getTimezone()->getName());
	$this->format = $dateFormat
		?? $this->date instanceof TypeDateTime
			? TypeDate::convertFormatToPhp(FORMAT_DATETIME)
			: TypeDate::convertFormatToPhp(FORMAT_DATE)
	;
}