• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/marketplace/url.php
  • Класс: BitrixRestMarketplaceUrlsTemplates
  • Вызов: Templates::addUrlFrom
public function addUrlFrom($url, $from) : string
	{
		if($from !== '')
		{
			if (mb_strpos($url, '?') === false)
			{
				$url .= '?from=' . $from;
			}
			else
			{
				$url .= '&from=' . $from;
			}
		}

		return $url;
	}