• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/repository/schedule/calendarrepository.php
  • Класс: BitrixTimemanRepositoryScheduleCalendarRepository
  • Вызов: CalendarRepository::findByCodesWithExclusions
public function findByCodesWithExclusions($systemCodes)
{
	if (empty($systemCodes))
	{
		return [];
	}
	return CalendarTable::query()
		->whereIn('SYSTEM_CODE', $systemCodes)
		->addSelect('*')
		->addSelect('EXCLUSIONS')
		->exec()
		->fetchCollection();
}