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

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

File

modules/payment_form/src/Plugin/Field/FieldFormatter/PaymentForm.php, line 85

Class

PaymentForm
Formats payment form fields.

Namespace

Drupal\payment_form\Plugin\Field\FieldFormatter

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($plugin_id, $plugin_definition, $configuration['field_definition'], $configuration['settings'], $configuration['label'], $configuration['view_mode'], $configuration['third_party_settings'], $container
    ->get('request_stack'), $container
    ->get('entity.form_builder'), $container
    ->get('entity_type.manager')
    ->getStorage('payment'), $container
    ->get('plugin.manager.payment.line_item'));
}