You are here

features_menu.features.menu_custom.inc in Multipurpose Corporate Profile 7

File

modules/features/features_menu/features_menu.features.menu_custom.inc
View source
<?php

/**
 * @file
 * features_menu.features.menu_custom.inc
 */

/**
 * Implements hook_menu_default_menu_custom().
 */
function features_menu_menu_default_menu_custom() {
  $menus = array();

  // Exported menu: main-menu.
  $menus['main-menu'] = array(
    'menu_name' => 'main-menu',
    'title' => 'Main menu',
    'description' => 'The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.',
  );

  // Translatables
  // Included for use with string extractors like potx.
  t('Main menu');
  t('The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.');
  return $menus;
}

Functions

Namesort descending Description
features_menu_menu_default_menu_custom Implements hook_menu_default_menu_custom().