public function Payflow::defaultConfiguration in Commerce PayPal 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/ Payflow.php, line 70
Class
- Payflow
- Provides the PayPal Payflow payment gateway.
Namespace
Drupal\commerce_paypal\Plugin\Commerce\PaymentGatewayCode
public function defaultConfiguration() {
return [
'partner' => '',
'vendor' => '',
'user' => '',
'password' => '',
] + parent::defaultConfiguration();
}