function menu_main_menu

Returns an array of links to be rendered as the Main menu.

Related topics

1 call to menu_main_menu()
template_preprocess_page in drupal/core/includes/theme.inc
Preprocess variables for page.tpl.php

File

drupal/core/includes/menu.inc, line 1763
API for the Drupal menu system.

Code

function menu_main_menu() {
  $config = config('menu.settings');
  $menu_enabled = module_exists('menu');

  // When menu module is not enabled, we need a hardcoded default value.
  $main_links_source = $menu_enabled ? $config
    ->get('main_links') : 'main';
  return menu_navigation_links($main_links_source);
}