You are here

function menu_configuration_api in Configuration Management 7

Implements hook_configuration_api().

File

includes/configuration.menu.inc, line 6

Code

function menu_configuration_api() {
  return array(
    'menu_custom' => array(
      'name' => t('Menus'),
      'default_hook' => 'menu_default_menu_custom',
      'feature_source' => TRUE,
      'default_file' => CONFIGURATION_DEFAULTS_INCLUDED,
    ),
    'menu_links' => array(
      'name' => t('Menu links'),
      'default_hook' => 'menu_default_menu_links',
      'feature_source' => TRUE,
      'default_file' => CONFIGURATION_DEFAULTS_INCLUDED,
    ),
    // DEPRECATED
    'menu' => array(
      'name' => t('Menu items'),
      'default_hook' => 'menu_default_items',
      'default_file' => CONFIGURATION_DEFAULTS_INCLUDED,
      'feature_source' => FALSE,
    ),
  );
}