clameurs.features.menu_links.inc 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. /**
  3. * @file
  4. * clameurs.features.menu_links.inc
  5. */
  6. /**
  7. * Implements hook_menu_default_menu_links().
  8. */
  9. function clameurs_menu_default_menu_links() {
  10. $menu_links = array();
  11. // Exported menu link: menu-footer-menu_contact:node/64.
  12. $menu_links['menu-footer-menu_contact:node/64'] = array(
  13. 'menu_name' => 'menu-footer-menu',
  14. 'link_path' => 'node/64',
  15. 'router_path' => 'node/%',
  16. 'link_title' => 'Contact',
  17. 'options' => array(
  18. 'attributes' => array(
  19. 'title' => '',
  20. ),
  21. 'identifier' => 'menu-footer-menu_contact:node/64',
  22. ),
  23. 'module' => 'menu',
  24. 'hidden' => 0,
  25. 'external' => 0,
  26. 'has_children' => 0,
  27. 'expanded' => 0,
  28. 'weight' => -49,
  29. 'customized' => 1,
  30. 'language' => 'und',
  31. 'menu_links_customized' => 1,
  32. );
  33. // Exported menu link: menu-footer-menu_crdits:node/1.
  34. $menu_links['menu-footer-menu_crdits:node/1'] = array(
  35. 'menu_name' => 'menu-footer-menu',
  36. 'link_path' => 'node/1',
  37. 'router_path' => 'node/%',
  38. 'link_title' => 'Crédits',
  39. 'options' => array(
  40. 'attributes' => array(
  41. 'title' => '',
  42. ),
  43. 'identifier' => 'menu-footer-menu_crdits:node/1',
  44. ),
  45. 'module' => 'menu',
  46. 'hidden' => 0,
  47. 'external' => 0,
  48. 'has_children' => 0,
  49. 'expanded' => 0,
  50. 'weight' => -48,
  51. 'customized' => 1,
  52. 'language' => 'und',
  53. 'menu_links_customized' => 1,
  54. );
  55. // Exported menu link: menu-footer-menu_partenaires:node/62.
  56. $menu_links['menu-footer-menu_partenaires:node/62'] = array(
  57. 'menu_name' => 'menu-footer-menu',
  58. 'link_path' => 'node/62',
  59. 'router_path' => 'node/%',
  60. 'link_title' => 'Partenaires',
  61. 'options' => array(
  62. 'attributes' => array(
  63. 'title' => '',
  64. ),
  65. 'identifier' => 'menu-footer-menu_partenaires:node/62',
  66. ),
  67. 'module' => 'menu',
  68. 'hidden' => 0,
  69. 'external' => 0,
  70. 'has_children' => 0,
  71. 'expanded' => 0,
  72. 'weight' => -50,
  73. 'customized' => 1,
  74. 'language' => 'und',
  75. 'menu_links_customized' => 1,
  76. );
  77. // Translatables
  78. // Included for use with string extractors like potx.
  79. t('Contact');
  80. t('Crédits');
  81. t('Partenaires');
  82. return $menu_links;
  83. }