You are here

function commerce_cardonfile_rules_data_info in Commerce Card on File 7.2

Implements hook_rules_data_info().

File

./commerce_cardonfile.rules.inc, line 11
Provides Rules integration

Code

function commerce_cardonfile_rules_data_info() {
  return array(
    'commerce_cardonfile_charge_card_response' => array(
      'label' => t('charge card response'),
      'group' => t('Card on File'),
      'wrap' => TRUE,
      'wrapper class' => 'EntityStructureWrapper',
      'token type' => 'commerce-cardonfile-charge-card-response',
      'property info' => commerce_cardonfile_charge_card_response_property_info_callback(),
    ),
  );
}