• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/routing/options.php
  • Класс: BitrixMainRoutingOptions
  • Вызов: Options::getFullPrefix
public function getFullPrefix()
{
	// concat parentPrefixes with this prefix
	$prefixes = $this->parentPrefixes ?: [];

	if ($this->prefix != '')
	{
		$prefixes[] = $this->prefix;
	}


	return '/'.join('/', $prefixes);
}