• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/managers/accessibility.php
  • Класс: BitrixCalendarCoreManagersAccessibility
  • Вызов: Accessibility::doIntervalsIntersect
private function doIntervalsIntersect($from1, $to1, $from2, $to2): bool
{
	return $this->oneIntervalIntersectsAnother($from1, $to1, $from2, $to2)
		|| $this->oneIntervalIntersectsAnother($from2, $to2, $from1, $to1);
}