Remind::isBeforeEventStart

  1. Bitrix24 API (v. 23.675.0)
  2. calendar
  3. Remind
  4. isBeforeEventStart
  • Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/event/properties/remind.php
  • Класс: BitrixCalendarCoreEventPropertiesRemind
  • Вызов: Remind::isBeforeEventStart
public function isBeforeEventStart(): bool
{
	if ($this->checkSpecificTime())
	{
		try
		{
			return $this->getSpecificTime()->getTimestamp() <= $this->eventStart->getTimestamp();
		}
		catch (PropertyException $e)
		{
			return false;
		}
	}

	return false;
}

Добавить комментарий