function _commerce_stripe_load_setting in Commerce Stripe 7
Same name and namespace in other branches
- 7.3 commerce_stripe.module \_commerce_stripe_load_setting()
- 7.2 commerce_stripe.module \_commerce_stripe_load_setting()
1 call to _commerce_stripe_load_setting()
- commerce_stripe_cardonfile_create_form in ./
commerce_stripe.module - Card on file callback: create form
File
- ./
commerce_stripe.module, line 757 - 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_load_setting($name, $default_value = NULL) {
$settings = _commerce_stripe_load_settings($name);
return isset($settings[$name]) ? $settings[$name] : $default_value;
}