public function CheckoutFlowBase::defaultConfiguration in Commerce Core 8.2
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides ConfigurableInterface::defaultConfiguration
2 calls to CheckoutFlowBase::defaultConfiguration()
- CheckoutFlowBase::setConfiguration in modules/
checkout/ src/ Plugin/ Commerce/ CheckoutFlow/ CheckoutFlowBase.php - Sets the configuration for this plugin instance.
- CheckoutFlowWithPanesBase::defaultConfiguration in modules/
checkout/ src/ Plugin/ Commerce/ CheckoutFlow/ CheckoutFlowWithPanesBase.php - Gets default configuration for this plugin.
1 method overrides CheckoutFlowBase::defaultConfiguration()
- CheckoutFlowWithPanesBase::defaultConfiguration in modules/
checkout/ src/ Plugin/ Commerce/ CheckoutFlow/ CheckoutFlowWithPanesBase.php - Gets default configuration for this plugin.
File
- modules/
checkout/ src/ Plugin/ Commerce/ CheckoutFlow/ CheckoutFlowBase.php, line 283
Class
- CheckoutFlowBase
- Provides the base checkout flow class.
Namespace
Drupal\commerce_checkout\Plugin\Commerce\CheckoutFlowCode
public function defaultConfiguration() {
return [
'display_checkout_progress' => TRUE,
'display_checkout_progress_breadcrumb_links' => FALSE,
];
}