public static function PaymentForm::create in Payment 8.2
Same name in this branch
- 8.2 modules/payment_form/src/Entity/Payment/PaymentForm.php \Drupal\payment_form\Entity\Payment\PaymentForm::create()
- 8.2 modules/payment_form/src/Plugin/Payment/Type/PaymentForm.php \Drupal\payment_form\Plugin\Payment\Type\PaymentForm::create()
- 8.2 modules/payment_form/src/Plugin/Field/FieldFormatter/PaymentForm.php \Drupal\payment_form\Plugin\Field\FieldFormatter\PaymentForm::create()
- 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 WidgetBase::create
1 call to PaymentForm::create()
- PaymentFormTest::testCreate in modules/
payment_form/ tests/ src/ Unit/ Plugin/ Field/ FieldWidget/ PaymentFormTest.php - @covers ::create @covers ::__construct
File
- modules/
payment_form/ src/ Plugin/ Field/ FieldWidget/ PaymentForm.php, line 63
Class
- PaymentForm
- A payment configuration widget.
Namespace
Drupal\payment_form\Plugin\Field\FieldWidgetCode
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['third_party_settings'], $container
->get('string_translation'), $container
->get('plugin.manager.payment.line_item'));
}