function hansel_features_api in Hansel breadcrumbs 8
Same name and namespace in other branches
- 7 hansel.module \hansel_features_api()
 
Implements hook_features_api().
File
- ./
hansel.module, line 888  - 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',
    ),
  );
}