You are here

public static function PaymentReference::create in Payment 8.2

Same name in this branch
  1. 8.2 modules/payment_reference/src/Element/PaymentReference.php \Drupal\payment_reference\Element\PaymentReference::create()
  2. 8.2 modules/payment_reference/src/Plugin/Payment/Type/PaymentReference.php \Drupal\payment_reference\Plugin\Payment\Type\PaymentReference::create()
  3. 8.2 modules/payment_reference/src/Plugin/Field/FieldWidget/PaymentReference.php \Drupal\payment_reference\Plugin\Field\FieldWidget\PaymentReference::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 ContainerFactoryPluginInterface::create

1 call to PaymentReference::create()
PaymentReferenceTest::testCreate in modules/payment_reference/tests/src/Unit/Element/PaymentReferenceTest.php
@covers ::create @covers ::__construct

File

modules/payment_reference/src/Element/PaymentReference.php, line 61

Class

PaymentReference
Provides a payment reference element.

Namespace

Drupal\payment_reference\Element

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {

  /** @var \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager */
  $entity_type_manager = $container
    ->get('entity_type.manager');

  /** @var \Drupal\plugin\PluginType\PluginTypeManagerInterface $plugin_type_manager */
  $plugin_type_manager = $container
    ->get('plugin.plugin_type_manager');
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('request_stack'), $entity_type_manager
    ->getStorage('payment'), $container
    ->get('string_translation'), $container
    ->get('date.formatter'), $container
    ->get('link_generator'), $container
    ->get('renderer'), $container
    ->get('current_user'), $container
    ->get('plugin.manager.plugin.plugin_selector'), $plugin_type_manager
    ->getPluginType('payment_method'), new Random(), $container
    ->get('payment_reference.queue'));
}