• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/lib/basetype/time.php
  • Класс: BitrixBizprocBaseTypeTime
  • Вызов: Time::getFormats
static function getFormats()
{
	$formats = parent::getFormats();
	$formats['server'] = [
		'callable' => 'formatValueServer',
		'separator' => ', ',
	];
	$formats['responsible'] = [
		'callable' => 'formatValueResponsible',
		'separator' => ', ',
	];
	$formats['author'] = $formats['responsible'];

	return $formats;
}