You are here

public function ContactInformation::defaultConfiguration in Commerce Core 8.2

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides CheckoutPaneBase::defaultConfiguration

File

modules/checkout/src/Plugin/Commerce/CheckoutPane/ContactInformation.php, line 22

Class

ContactInformation
Provides the contact information pane.

Namespace

Drupal\commerce_checkout\Plugin\Commerce\CheckoutPane

Code

public function defaultConfiguration() {
  return [
    'double_entry' => FALSE,
  ] + parent::defaultConfiguration();
}