• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/event/properties/remind.php
  • Класс: BitrixCalendarCoreEventPropertiesRemind
  • Вызов: Remind::getTimeBeforeStartInMinutes
public function getTimeBeforeStartInMinutes(): int
{
	if (!$this->checkSpecificTime())
	{
		return 0;
	}

	try
	{
		$delta = $this->eventStart->getTimestamp() - $this->getSpecificTime()->getTimestamp();

		return $delta / 60;
	}
	catch (PropertyException $e)
	{
		return 0;
	}
}