You are here

public static function PaymentForm::create in Payment 8.2

Same name in this branch
  1. 8.2 modules/payment_form/src/Entity/Payment/PaymentForm.php \Drupal\payment_form\Entity\Payment\PaymentForm::create()
  2. 8.2 modules/payment_form/src/Plugin/Payment/Type/PaymentForm.php \Drupal\payment_form\Plugin\Payment\Type\PaymentForm::create()
  3. 8.2 modules/payment_form/src/Plugin/Field/FieldFormatter/PaymentForm.php \Drupal\payment_form\Plugin\Field\FieldFormatter\PaymentForm::create()
  4. 8.2 modules/payment_form/src/Plugin/Field/FieldWidget/PaymentForm.php \Drupal\payment_form\Plugin\Field\FieldWidget\PaymentForm::create()

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 PaymentTypeBase::create

1 call to PaymentForm::create()
PaymentFormTest::testCreate in modules/payment_form/tests/src/Unit/Plugin/Payment/Type/PaymentFormTest.php
@covers ::create @covers ::__construct

File

modules/payment_form/src/Plugin/Payment/Type/PaymentForm.php, line 64

Class

PaymentForm
The payment form field payment type.

Namespace

Drupal\payment_form\Plugin\Payment\Type

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('payment.event_dispatcher'), $container
    ->get('entity_field.manager'), $container
    ->get('string_translation'));
}