You are here

function commerce_stripe_default_settings in Commerce Stripe 7.3

Returns the default settings for the Stripe module.

1 call to commerce_stripe_default_settings()
commerce_stripe_settings_form in ./commerce_stripe.module
Payment method settings form.

File

./commerce_stripe.module, line 1971
This module provides Stripe (http://stripe.com/) payment gateway integration to Commerce. Commerce Stripe offers a PCI-compliant way to process payments straight from you Commerce shop.

Code

function commerce_stripe_default_settings() {
  return array(
    'secret_key' => '',
    'public_key' => '',
    'use_connected_account' => 'none',
    'commerce_stripe_api_version' => COMMERCE_STRIPE_API_LATEST_TESTED,
    'commerce_stripe_api_version_custom' => '',
  );
}