• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Display/ClientSummary.php
  • Класс: Bitrix\Crm\Service\Display\ClientSummary
  • Вызов: ClientSummary::renderTitle
private function renderTitle(): string
{
	if ($this->url === '' && $this->title === '')
	{
		return '';
	}

	$title = $this->title !== '' ? $this->title : $this->url;

	$titleContent =
		$this->url === ''
		? $this->title
		: 'url.'">' . $title . ''
	;

	return '
' . $titleContent . '
'; }