• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/controller/timeline/logo.php
  • Класс: Bitrix\Crm\Controller\Timeline\Logo
  • Вызов: Logo::getLogoDataByObject
protected function getLogoDataByObject(CustomLogo $item): ?array
{
	$factory = $this->getLogoFactory($item->getCode());
	$logo = $factory
		->createLogo()
		->setBackgroundSize()
		->setBackgroundUrl($item->getFileUri())
	;

	return $this->getPreparedLogoData($logo, $factory->isSystem());
}