• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/timeline/historydatamodel/presenter.php
  • Класс: Bitrix\Crm\Timeline\HistoryDataModel\Presenter
  • Вызов: Presenter::prepareDataByOptions
protected function prepareDataByOptions(array $data, ?array $options): array
{
	if (!is_array($options))
	{
		$options = [];
	}

	if (isset($options['ENABLE_USER_INFO']) && $options['ENABLE_USER_INFO'] === true)
	{
		$data['AUTHOR'] = $this->prepareAuthorInfo((int)($data['AUTHOR_ID'] ?? null));
	}

	return $data;
}