You are here

function commerce_cardonfile_rules_action_order_select_card in Commerce Card on File 7.2

Rules action callback for commerce_cardonfile_order_select_card

1 string reference to 'commerce_cardonfile_rules_action_order_select_card'
commerce_cardonfile_rules_action_info in ./commerce_cardonfile.rules.inc
Implements hook_rules_action_info().

File

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

Code

function commerce_cardonfile_rules_action_order_select_card($order, $forced_instance_id = NULL) {
  $response = commerce_cardonfile_order_select_card($order, $forced_instance_id);
  return array(
    'select_card_response' => $response,
  );
}