function popup_block_features_api in Popup 8
Same name and namespace in other branches
- 7 modules/popup_block/popup_block.module \popup_block_features_api()
- 7.x modules/popup_block/popup_block.module \popup_block_features_api()
- 6.x modules/popup_block/popup_block.module \popup_block_features_api()
Implementation of hook_features_api
File
- modules/
popup_block/ popup_block.module, line 92
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',
),
);
}