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