• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/event/event.php
  • Класс: BitrixCalendarCoreEventEvent
  • Вызов: Event::isMeeting
public function isMeeting(): bool
{
	if ($this->isMeeting === false)
	{
		return $this->attendeeCollection
			&& count($this->attendeeCollection) >= self::MIN_MEETING_PARTICIPANT;
	}

	return true;
}