You are here

function commerce_braintree_dropin_default_settings in Commerce Braintree 7.3

Returns the default settings for Braintree Drop-in UI.

1 call to commerce_braintree_dropin_default_settings()
commerce_braintree_dropin_settings_form in modules/commerce_braintree_dropin/commerce_braintree_dropin.module
Payment method callback: Braintree Web settings form.

File

modules/commerce_braintree_dropin/commerce_braintree_dropin.module, line 62
Provides integration with Braintree Drop-in UI.

Code

function commerce_braintree_dropin_default_settings() {
  return array(
    'merchant_id' => '',
    'public_key' => '',
    'private_key' => '',
    'merchant_account_id' => '',
    'environment' => 'sandbox',
    'paypal_flow' => 0,
    'cardonfile' => FALSE,
    'submit_for_settlement' => TRUE,
  );
}