You are here

function oa_layouts_menu_default_menu_custom in Open Atrium Core 7.2

Implements hook_menu_default_menu_custom().

File

modules/oa_layouts/oa_layouts.features.menu_custom.inc, line 10
oa_layouts.features.menu_custom.inc

Code

function oa_layouts_menu_default_menu_custom() {
  $menus = array();

  // Exported menu: menu-footer.
  $menus['menu-footer'] = array(
    'menu_name' => 'menu-footer',
    'title' => 'Footer',
    'description' => '',
  );

  // Translatables
  // Included for use with string extractors like potx.
  t('Footer');
  return $menus;
}