public function VisaCheckout::defaultConfiguration in Commerce Authorize.Net 8
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides PaymentGatewayBase::defaultConfiguration
File
- src/
Plugin/ Commerce/ PaymentGateway/ VisaCheckout.php, line 114
Class
- VisaCheckout
- Provides the Authorize.net payment gateway.
Namespace
Drupal\commerce_authnet\Plugin\Commerce\PaymentGatewayCode
public function defaultConfiguration() {
return [
'api_login' => '',
'transaction_key' => '',
'client_key' => '',
'visa_checkout_api_key' => '',
] + parent::defaultConfiguration();
}