• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/binding/menu.php
  • Класс: BitrixIntranetBindingMenu
  • Вызов: Menu::getRestPlacementMap
static function getRestPlacementMap(): array
{
	$result = [];
	foreach (static::getMapObject()->getSections() as $section)
	{
		foreach ($section->getItems() as $item)
		{
			$result[static::getRestPlacementCode($section, $item)] = static::getBindingMenuCode($section, $item);
		}
	}

	return $result;
}