You are here

public static function CheckoutPaneBase::create in Commerce Core 8.2

Creates an instance of the plugin.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin.

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin ID for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Return value

static Returns an instance of this plugin.

Overrides ContainerFactoryPluginInterface::create

7 methods override CheckoutPaneBase::create()
BillingInformation::create in modules/checkout/src/Plugin/Commerce/CheckoutPane/BillingInformation.php
Creates an instance of the plugin.
CompletionMessage::create in modules/checkout/src/Plugin/Commerce/CheckoutPane/CompletionMessage.php
Creates an instance of the plugin.
CompletionRegister::create in modules/checkout/src/Plugin/Commerce/CheckoutPane/CompletionRegister.php
Creates an instance of the plugin.
CouponRedemption::create in modules/promotion/src/Plugin/Commerce/CheckoutPane/CouponRedemption.php
Creates an instance of the plugin.
Login::create in modules/checkout/src/Plugin/Commerce/CheckoutPane/Login.php
Creates an instance of the plugin.

... See full list

File

modules/checkout/src/Plugin/Commerce/CheckoutPane/CheckoutPaneBase.php, line 66

Class

CheckoutPaneBase
Provides the base checkout pane class.

Namespace

Drupal\commerce_checkout\Plugin\Commerce\CheckoutPane

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition, CheckoutFlowInterface $checkout_flow = NULL) {
  return new static($configuration, $plugin_id, $plugin_definition, $checkout_flow, $container
    ->get('entity_type.manager'));
}