function stripe_customer_rules_data_info in Stripe 7
Provide data info to Rules for customer ID.
File
- stripe_customer/
stripe_customer.rules.inc, line 11 - Provides Rules integration for the Stripe Customer module.
Code
function stripe_customer_rules_data_info() {
return array(
'customer_id' => array(
'label' => t('Stripe customer ID'),
'group' => t('Stripe'),
'token type' => 'stripe-customer',
),
);
}