clameurs.features.menu_custom.inc 521 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * @file
  4. * clameurs.features.menu_custom.inc
  5. */
  6. /**
  7. * Implements hook_menu_default_menu_custom().
  8. */
  9. function clameurs_menu_default_menu_custom() {
  10. $menus = array();
  11. // Exported menu: menu-footer-menu.
  12. $menus['menu-footer-menu'] = array(
  13. 'menu_name' => 'menu-footer-menu',
  14. 'title' => 'Footer menu',
  15. 'description' => '',
  16. 'language' => 'und',
  17. 'i18n_mode' => 0,
  18. );
  19. // Translatables
  20. // Included for use with string extractors like potx.
  21. t('Footer menu');
  22. return $menus;
  23. }