• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/model/schedule/shift/shift.php
  • Класс: BitrixTimemanModelScheduleShiftShift
  • Вызов: Shift::buildUtcEndByShiftplan
public function buildUtcEndByShiftplan($shiftPlan)
{
	$utcStart = $this->buildUtcStartByShiftplan($shiftPlan);
	$utcStart->add(new DateInterval('PT' . $this->getDuration() . 'S'));
	return $utcStart;
}