materio_home_v2.features.menu_custom.inc 526 B

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