showroom.features.menu_links.inc 955 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * @file
  4. * showroom.features.menu_links.inc
  5. */
  6. /**
  7. * Implements hook_menu_default_menu_links().
  8. */
  9. function showroom_menu_default_menu_links() {
  10. $menu_links = array();
  11. // Exported menu link: navigation_showroom:node/add/showroom.
  12. $menu_links['navigation_showroom:node/add/showroom'] = array(
  13. 'menu_name' => 'navigation',
  14. 'link_path' => 'node/add/showroom',
  15. 'router_path' => 'node/add/showroom',
  16. 'link_title' => 'Showroom',
  17. 'options' => array(
  18. 'identifier' => 'navigation_showroom:node/add/showroom',
  19. ),
  20. 'module' => 'system',
  21. 'hidden' => 0,
  22. 'external' => 0,
  23. 'has_children' => 0,
  24. 'expanded' => 0,
  25. 'weight' => -44,
  26. 'customized' => 1,
  27. 'language' => 'und',
  28. 'menu_links_customized' => 1,
  29. 'parent_identifier' => 'navigation_add-content:node/add',
  30. );
  31. // Translatables
  32. // Included for use with string extractors like potx.
  33. t('Showroom');
  34. return $menu_links;
  35. }