• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/classes/general/event_calendar.php
  • Класс: CEventCalendar
  • Вызов: CEventCalendar::TrimTime
function TrimTime($strTime)
{
	$strTime = trim($strTime);
	$strTime = preg_replace("/:00$/", "", $strTime);
	$strTime = preg_replace("/:00$/", "", $strTime);
	$strTime = preg_replace("/\s00$/", "", $strTime);
	return rtrim($strTime);
}