• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/model/schedule/shift/shift.php
  • Класс: BitrixTimemanModelScheduleShiftShift
  • Вызов: Shift::getDuration
public function getDuration()
{
	$duration = $this->getWorkTimeEnd() - $this->getWorkTimeStart();
	if ($duration < 0)
	{
		$duration = 24 * TimeDictionary::SECONDS_PER_HOUR - $this->getWorkTimeStart() + $this->getWorkTimeEnd();
	}
	return $duration;
}