• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/model/schedule/schedulecollection.php
  • Класс: BitrixTimemanModelScheduleScheduleCollection
  • Вызов: ScheduleCollection::obtainShiftById
public function obtainShiftById($shiftId)
{
	foreach ($this->getAll() as $schedule)
	{
		if ($schedule->obtainShiftByPrimary($shiftId))
		{
			return $schedule->obtainShiftByPrimary($shiftId);
		}
	}
	return null;
}