public function PaymentMethodPluginBase::defaultConfiguration in Ubercart 8.4
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides ConfigurableInterface::defaultConfiguration
1 call to PaymentMethodPluginBase::defaultConfiguration()
- PaymentMethodPluginBase::__construct in payment/
uc_payment/ src/ PaymentMethodPluginBase.php - Constructs the PaymentMethodPluginBase object.
5 methods override PaymentMethodPluginBase::defaultConfiguration()
- CashOnDelivery::defaultConfiguration in payment/
uc_payment_pack/ src/ Plugin/ Ubercart/ PaymentMethod/ CashOnDelivery.php - Gets default configuration for this plugin.
- Check::defaultConfiguration in payment/
uc_payment_pack/ src/ Plugin/ Ubercart/ PaymentMethod/ Check.php - Gets default configuration for this plugin.
- CreditCardPaymentMethodBase::defaultConfiguration in payment/
uc_credit/ src/ CreditCardPaymentMethodBase.php - Gets default configuration for this plugin.
- PayPalPaymentMethodPluginBase::defaultConfiguration in payment/
uc_paypal/ src/ Plugin/ Ubercart/ PaymentMethod/ PayPalPaymentMethodPluginBase.php - Gets default configuration for this plugin.
- TwoCheckout::defaultConfiguration in payment/
uc_2checkout/ src/ Plugin/ Ubercart/ PaymentMethod/ TwoCheckout.php - Gets default configuration for this plugin.
File
- payment/
uc_payment/ src/ PaymentMethodPluginBase.php, line 65
Class
- PaymentMethodPluginBase
- Defines a base payment method plugin implementation.
Namespace
Drupal\uc_paymentCode
public function defaultConfiguration() {
return [];
}