function _homebox_features_api in Homebox 6.3
Same name and namespace in other branches
- 6.2 homebox.features.inc \_homebox_features_api()
- 7.3 homebox.features.inc \_homebox_features_api()
- 7.2 homebox.features.inc \_homebox_features_api()
Return API information for features.
1 call to _homebox_features_api()
- homebox_features_api in ./
homebox.module - Implementation of hook_features_api().
File
- ./
homebox.features.inc, line 11 - Features support.
Code
function _homebox_features_api() {
return array(
'homebox' => array(
'name' => t('Homebox'),
'default_hook' => 'homebox',
'default_file' => FEATURES_DEFAULTS_INCLUDED_COMMON,
'features_source' => TRUE,
'file' => drupal_get_path('module', 'homebox') . '/homebox.features.inc',
),
);
}