• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/CustomSection/Manager.php
  • Класс: BitrixIntranetCustomSectionManager
  • Вызов: Manager::appendSuperLeftMenuSections
public function appendSuperLeftMenuSections(array &$superLeftMenuSections): void
{
	foreach ($this->getCustomSections() as $customSection)
	{
		if ($this->isCustomSectionAvailable($customSection))
		{
			$superLeftMenuSections[] = $this->compileLeftMenuSectionDescription($customSection);
		}
	}
}