- Модуль: bizproc
- Путь к файлу: ~/bitrix/modules/bizproc/lib/Debugger/Session/Session.php
- Класс: BitrixBizprocDebuggerSessionSession
- Вызов: Session::getStartedByPrintable
private function getStartedByPrintable(): string
{
$format = CSite::GetNameFormat(false);
$user = CUser::GetList(
'id',
'asc',
['ID' => $this->getStartedBy()],
[
'FIELDS' => [
'TITLE',
'NAME',
'LAST_NAME',
'SECOND_NAME',
'NAME_SHORT',
'LAST_NAME_SHORT',
'SECOND_NAME_SHORT',
'EMAIL',
'ID'
],
]
)->Fetch();
return $user ? CUser::FormatName($format, $user, true, false) : '';
}