• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/repository/schedule/shiftrepository.php
  • Класс: BitrixTimemanRepositoryScheduleShiftRepository
  • Вызов: ShiftRepository::findShiftsBySchedule
public function findShiftsBySchedule($scheduleId)
{
	return $this->getActiveShiftsQuery()
		->addSelect('*')
		->where('SCHEDULE_ID', $scheduleId)
		->exec()
		->fetchCollection();
}