You are here

function popup_block_features_api in Popup 6.x

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

Implementation of hook_features_api

File

modules/popup_block/popup_block.module, line 55

Code

function popup_block_features_api() {
  return array(
    'popupblock' => array(
      'name' => t('Popup blocks'),
      'default_hook' => 'popupblock_defaults',
      'default_file' => FEATURES_DEFAULTS_INCLUDED_COMMON,
      'file' => drupal_get_path('module', 'popup_block') . '/includes/popup_block.features.inc',
    ),
  );
}