• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Controller/EntityDetails.php
  • Класс: BitrixCrmMobileControllerEntityDetails
  • Вызов: EntityDetails::getDesktopLink
public function getDesktopLink(Item $entity): ?string
{
	$entityTypeId = $entity->getEntityTypeId();
	$entityId = $entity->getId();
	$categoryId = $entity->isCategoriesSupported() ? $entity->getCategoryId() : null;

	$url = Container::getInstance()->getRouter()->getItemDetailUrl($entityTypeId, $entityId, $categoryId);
	if ($url)
	{
		return $url->getLocator();
	}

	return null;
}