You are here

function commerce_paypal_ec_banners_default_settings in Commerce PayPal 7.2

Returns the default settings for the PayPal EC payment method.

3 calls to commerce_paypal_ec_banners_default_settings()
commerce_paypal_ec_block_configure in modules/ec/commerce_paypal_ec.module
Implements hook_block_configure().
commerce_paypal_ec_block_view in modules/ec/commerce_paypal_ec.module
Implements hook_block_view().
commerce_paypal_ec_request_banner_account in modules/ec/commerce_paypal_ec.module

File

modules/ec/commerce_paypal_ec.module, line 1679
Implements PayPal Express Checkout in Drupal Commerce checkout.

Code

function commerce_paypal_ec_banners_default_settings() {
  return array(
    'banner_agreement' => TRUE,
    'api_email' => '',
    'banner_size' => '120x240',
    'server' => 'live',
  );
}