You are here

function popup_menu_features_api in Popup 6.x

Same name and namespace in other branches
  1. 8 modules/popup_menu/popup_menu.module \popup_menu_features_api()
  2. 7 modules/popup_menu/popup_menu.module \popup_menu_features_api()
  3. 7.x modules/popup_menu/popup_menu.module \popup_menu_features_api()

Implementation of hook_features_api

File

modules/popup_menu/popup_menu.module, line 66

Code

function popup_menu_features_api() {
  return array(
    'popupmenu' => array(
      'name' => t('Popup menus'),
      'default_hook' => 'popupmenu_defaults',
      'default_file' => FEATURES_DEFAULTS_INCLUDED_COMMON,
      'file' => drupal_get_path('module', 'popup_menu') . '/includes/popup_menu.features.inc',
    ),
  );
}