• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/conversion/schemeitem.php
  • Класс: Bitrix\Crm\Conversion\SchemeItem
  • Вызов: SchemeItem::getName
public function getName(): string
{
	if (!empty($this->name))
	{
		return $this->name;
	}

	$entityNames = [];
	foreach ($this->entityTypeIds as $typeId)
	{
		$entityNames[] = \CCrmOwnerType::ResolveName($typeId);
	}

	return implode('|', $entityNames);
}