function commerce_sagepay_3ds_flag_list in Drupal Commerce SagePay Integration 7
Return a list of supported 3d secure flag options.
Return value
array
1 string reference to 'commerce_sagepay_3ds_flag_list'
- commerce_sagepay_rules_action_info in ./
commerce_sagepay.rules.inc - Implements hook_rules_action_info().
File
- ./
commerce_sagepay.rules.inc, line 419 - Implements new rules events actions and conditions.
Code
function commerce_sagepay_3ds_flag_list() {
return array(
'0' => t('If 3D-Secure checks are possible and rules allow, perform the checks and apply the authorisation rules. (default)'),
'1' => t('Force 3D-Secure checks for this transaction if possible and apply rules for authorisation.'),
'2' => t('Do not perform 3D-Secure checks for this transaction and always authorise.'),
'3' => t('Force 3D-Secure checks for this transaction if possible but ALWAYS obtain an auth code, irrespective of rule base.'),
);
}