ffdn_press.features.menu_custom.inc 626 B

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