- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/integration/bizproc/document/valuecollection/base.php
- Класс: Bitrix\Crm\Integration\BizProc\Document\ValueCollection\Base
- Вызов: Base::loadCreatedByPrintable
protected function loadCreatedByPrintable(): void
{
$this->loadEntityValues();
if (isset($this->document['CREATED_BY_ID']))
{
$this->document['CREATED_BY_PRINTABLE'] = \CUser::FormatName(
\CSite::GetNameFormat(false),
[
'LOGIN' => $this->document['CREATED_BY_LOGIN'] ?? '',
'NAME' => $this->document['CREATED_BY_NAME'] ?? '',
'LAST_NAME' => $this->document['CREATED_BY_LAST_NAME'] ?? '',
'SECOND_NAME' => $this->document['CREATED_BY_SECOND_NAME'] ?? '',
],
true,
false
);
}
}