You are here

function commerce_sagepay_request_token_list in Drupal Commerce SagePay Integration 7

Return a list of supported Token options.

Return value

array

1 string reference to 'commerce_sagepay_request_token_list'
commerce_sagepay_rules_action_info in ./commerce_sagepay.rules.inc
Implements hook_rules_action_info().

File

./commerce_sagepay.rules.inc, line 433
Implements new rules events actions and conditions.

Code

function commerce_sagepay_request_token_list() {
  return array(
    '0' => t('No token is required (default)'),
    '1' => t('Request a token if the account supports it and card on file is
    active.'),
  );
}