123456789101112131415161718192021222324252627 |
- <?php
- /**
- * @file
- * materio_administration.features.menu_custom.inc
- */
- /**
- * Implements hook_menu_default_menu_custom().
- */
- function materio_administration_menu_default_menu_custom() {
- $menus = array();
- // Exported menu: navigation.
- $menus['navigation'] = array(
- 'menu_name' => 'navigation',
- 'title' => 'Navigation',
- 'description' => 'The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.',
- 'language' => 'und',
- 'i18n_mode' => 0,
- );
- // Translatables
- // Included for use with string extractors like potx.
- t('Navigation');
- t('The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.');
- return $menus;
- }
|