• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/helper/timehelper.php
  • Класс: BitrixTimemanHelperTimeHelper
  • Вызов: TimeHelper::convertSecondsToHoursMinutesAmPm
public function convertSecondsToHoursMinutesAmPm($seconds)
{
	$ts = $this->buildTimestampByFormattedDateForServer(convertTimeStamp()) + $seconds % 86400;
	return formatDate($this->isAmPmMode() ? 'h:i a' : 'H:i', $ts);
}