• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/integration/crm/connectors/helper.php
  • Класс: Bitrix\Sender\Integration\Crm\Connectors\Helper
  • Вызов: Helper::getResultViewTitle
protected function getResultViewTitle($entityTypeId, $entityId, $title, $secondTitle = null, $thirdTitle = null)
{
	$url = self::getPathToDetail($entityTypeId, $entityId);
	$title = htmlspecialcharsbx($title);
	if ($url && \CCrmAuthorizationHelper::checkReadPermission($entityTypeId, $entityId))
	{
		$title = '' . $title . '';
	}

	if ($secondTitle)
	{
		$title .= "
"; $title .= htmlspecialcharsbx($secondTitle); $title .= ""; } if ($thirdTitle) { $title .= "
"; $title .= htmlspecialcharsbx($thirdTitle); $title .= ""; } return $title; }