• Модуль: market
  • Путь к файлу: ~/bitrix/modules/market/lib/Link.php
  • Класс: BitrixMarketLink
  • Вызов: Link::getFrom
static function getFrom(): string
{
	$from = '';
	$request = Application::getInstance()->getContext()->getRequest();
	$value = $request->get(Link::$keyFrom);
	if (is_string($value)) {
		$from = htmlspecialcharsbx($value);
	}

	return $from;
}