• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/web/uri.php
  • Класс: BitrixMainWebUri
  • Вызов: Uri::getLocator
public function getLocator()
{
	$uri = '';

	$scheme = $this->getScheme();
	if ($scheme != '')
	{
		$uri .= $scheme . ':';
	}

	$authority = $this->getAuthority();
	if ($authority != '')
	{
		$uri .= '//' . $authority;
	}

	$uri .= $this->getPathQuery();

	return $uri;
}