• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/timeline/entity/customlogo.php
  • Класс: Bitrix\Crm\Timeline\Entity\CustomLogoTable
  • Вызов: CustomLogoTable::getByCode
static function getByCode(string $code): ?CustomLogo
{
	return self::query()
		->addSelect('*')
		->where('CODE', $code)
		->fetchObject()
		;
}