showroom.features.menu_links.inc 891 B

1234567891011121314151617181920212223242526272829303132333435363738
  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' => 0,
  26. 'customized' => 0,
  27. 'language' => 'und',
  28. 'menu_links_customized' => 0,
  29. );
  30. // Translatables
  31. // Included for use with string extractors like potx.
  32. t('Showroom');
  33. return $menu_links;
  34. }