You are here

public function PaymentTypeBase::defaultConfiguration in Payment 8.2

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ConfigurableInterface::defaultConfiguration

4 calls to PaymentTypeBase::defaultConfiguration()
PaymentForm::defaultConfiguration in modules/payment_form/src/Plugin/Payment/Type/PaymentForm.php
Gets default configuration for this plugin.
PaymentReference::defaultConfiguration in modules/payment_reference/src/Plugin/Payment/Type/PaymentReference.php
Gets default configuration for this plugin.
PaymentTypeBase::setConfiguration in src/Plugin/Payment/Type/PaymentTypeBase.php
Sets the configuration for this plugin instance.
PaymentTypeBase::__construct in src/Plugin/Payment/Type/PaymentTypeBase.php
Constructs a new instance.
2 methods override PaymentTypeBase::defaultConfiguration()
PaymentForm::defaultConfiguration in modules/payment_form/src/Plugin/Payment/Type/PaymentForm.php
Gets default configuration for this plugin.
PaymentReference::defaultConfiguration in modules/payment_reference/src/Plugin/Payment/Type/PaymentReference.php
Gets default configuration for this plugin.

File

src/Plugin/Payment/Type/PaymentTypeBase.php, line 62

Class

PaymentTypeBase
Defines base payment type.

Namespace

Drupal\payment\Plugin\Payment\Type

Code

public function defaultConfiguration() {
  return [];
}