• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/event/properties/remindcollection.php
  • Класс: BitrixCalendarCoreEventPropertiesRemindCollection
  • Вызов: RemindCollection::getFilterRemindBeforeEventStart
public function getFilterRemindBeforeEventStart(): array
{
	return array_filter($this->collection, function ($remind) {
		try
		{
			/** @var Remind $remind */
			return $remind
				->setEventStart($this->start)
				->isBeforeEventStart()
			;
		}
		catch (PropertyException $exception)
		{
			return false;
		}
	});
}