• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/CustomSection/Manager.php
  • Класс: BitrixIntranetCustomSectionManager
  • Вызов: Manager::getUrlForPage
public function getUrlForPage(string $customSectionCode, string $pageCode): ?Uri
{
	if (!$this->isCodeValid($customSectionCode) || !$this->isCodeValid($pageCode))
	{
		return null;
	}

	$link = str_replace(
		['#customSectionCode#', '#pageCode#'],
		[$customSectionCode, $pageCode],
		static::PAGE_URL_TEMPLATE
	);

	return new Uri($link);
}