You are here

function uc_product_features_api in Ubercart 7.3

Same name and namespace in other branches
  1. 6.2 uc_product/uc_product.module \uc_product_features_api()

Implements hook_features_api().

File

uc_product/uc_product.module, line 1836
The product module for Ubercart.

Code

function uc_product_features_api() {
  return array(
    'uc_product_classes' => array(
      'name' => t('Ubercart product classes'),
      'feature_source' => TRUE,
      'default_hook' => 'uc_product_default_classes',
      'file' => drupal_get_path('module', 'uc_product') . '/uc_product.features.inc',
    ),
  );
}