You are here

oa_layouts.features.menu_custom.inc in Open Atrium Core 7.2

File

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

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

/**
 * Implements hook_menu_default_menu_custom().
 */
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;
}

Functions

Namesort descending Description
oa_layouts_menu_default_menu_custom Implements hook_menu_default_menu_custom().