• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/checkout/authadapter.php
  • Класс: Bitrix\Seo\Checkout\AuthAdapter
  • Вызов: AuthAdapter::getAuthUrl
public function getAuthUrl()
{
	if (!SeoService::isRegistered())
	{
		SeoService::register();
	}

	$authorizeUrl = SeoService::getAuthorizeLink();
	$authorizeData = SeoService::getAuthorizeData($this->getEngineCode());
	$uri = new Uri($authorizeUrl);
	if (!empty($this->parameters['URL_PARAMETERS']))
	{
		$authorizeData['urlParameters'] = $this->parameters['URL_PARAMETERS'];
	}
	$uri->addParams($authorizeData);
	return $uri->getLocator();
}