You are here

function uc_extra_fields_pane_features_api in Extra Fields Checkout Pane 7

Same name and namespace in other branches
  1. 6.2 uc_extra_fields_pane.module \uc_extra_fields_pane_features_api()

Implements hook_features_api().

File

./uc_extra_fields_pane.features.inc, line 10
Features integration.

Code

function uc_extra_fields_pane_features_api() {
  return array(
    'uc_extra_fields_pane_field' => array(
      'name' => t('Extra Fields Pane field'),
      'feature_source' => TRUE,
      'default_hook' => 'uc_extra_fields_pane_default_fields',
      'default_file' => FEATURES_DEFAULTS_INCLUDED,
      'file' => drupal_get_path('module', 'uc_extra_fields_pane') . '/uc_extra_fields_pane.features.inc',
    ),
  );
}