function commerce_cop_features_api in Commerce Custom Offline Payments 7
Implements hook_features_api().
File
- ./
commerce_cop.module, line 444 - Custom offline payment methods for Drupal Commerce.
Code
function commerce_cop_features_api() {
return array(
'commerce_custom_offline_payment' => array(
'name' => t('Commerce Custom Offline Payments'),
'default_hook' => 'commerce_custom_offline_payments',
'feature_source' => TRUE,
'file' => drupal_get_path('module', 'commerce_cop') . '/commerce_custom_offline_payment.features.inc',
),
);
}