• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/timemanurlmanager.php
  • Класс: BitrixTimemanTimemanUrlManager
  • Вызов: TimemanUrlManager::getUriTo
public function getUriTo($routeName, $params = [])
{
	if (!$this->isRouteExists($routeName))
	{
		return ''; // throw exception?
	}
	if (!$this->hasAllRequiredParams($routeName, $params))
	{
		return ''; // throw exception?
	}

	return $this->replaceUriParams($routeName, $params);
}