• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/repository/schedule/shiftrepository.php
  • Класс: BitrixTimemanRepositoryScheduleShiftRepository
  • Вызов: ShiftRepository::findScheduleIdByShiftId
public function findScheduleIdByShiftId($shiftId)
{
	$result = $this->getActiveShiftsQuery()->addSelect('SCHEDULE_ID')->where('ID', $shiftId)->fetch();
	if ($result === false)
	{
		return null;
	}
	return $result['SCHEDULE_ID'];
}