admin.features.menu_custom.inc 804 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @file
  4. * admin.features.menu_custom.inc
  5. */
  6. /**
  7. * Implements hook_menu_default_menu_custom().
  8. */
  9. function admin_menu_default_menu_custom() {
  10. $menus = array();
  11. // Exported menu: navigation.
  12. $menus['navigation'] = array(
  13. 'menu_name' => 'navigation',
  14. 'title' => 'Navigation',
  15. 'description' => 'The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.',
  16. 'language' => 'und',
  17. 'i18n_mode' => 0,
  18. );
  19. // Translatables
  20. // Included for use with string extractors like potx.
  21. t('Navigation');
  22. t('The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.');
  23. return $menus;
  24. }