function hansel_features_api in Hansel breadcrumbs 7
Same name and namespace in other branches
- 8 hansel.module \hansel_features_api()
Implements hook_features_api().
File
- ./
hansel.module, line 902 - Hansel module
Code
function hansel_features_api() {
return array(
'hansel' => array(
'name' => 'Hansel',
'default_hook' => 'hansel_default',
'default_file' => FEATURES_DEFAULTS_INCLUDED,
'feature_source' => TRUE,
'file' => drupal_get_path('module', 'hansel') . '/hansel.features.inc',
),
);
}