• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/CustomSection/Manager.php
  • Класс: BitrixIntranetCustomSectionManager
  • Вызов: Manager::getSectionRootUrl
protected function getSectionRootUrl(CustomSection $customSection): ?Uri
{
	$customSectionCode = $customSection->getCode();

	if (!$this->isCodeValid($customSectionCode))
	{
		return null;
	}

	$link = str_replace('#customSectionCode#', $customSectionCode, static::SECTION_ROOT_URL_TEMPLATE);

	return new Uri($link);
}