• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/form/schedule/shiftform.php
  • Класс: BitrixTimemanFormScheduleShiftForm
  • Вызов: ShiftForm::getFormattedBreakDuration
public function getFormattedBreakDuration($defaultBreakDuration = 1 * 60 * 60)
{
	return $this->timeHelper->convertSecondsToHoursMinutes(
		$this->breakDuration === null
			? $defaultBreakDuration
			: $this->breakDuration
	);
}