You are here

public static function MolliePayment::create in Mollie Payment 8.2

Same name in this branch
  1. 8.2 src/Plugin/Payment/MethodConfiguration/MolliePayment.php \Drupal\mollie_payment\Plugin\Payment\MethodConfiguration\MolliePayment::create()
  2. 8.2 src/Plugin/Payment/Method/MolliePayment.php \Drupal\mollie_payment\Plugin\Payment\Method\MolliePayment::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 PaymentMethodConfigurationBase::create

File

src/Plugin/Payment/MethodConfiguration/MolliePayment.php, line 74

Class

MolliePayment
Provides the configuration for the mollie_payment payment method plugin.

Namespace

Drupal\mollie_payment\Plugin\Payment\MethodConfiguration

Code

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

  /** @var \Drupal\plugin\PluginTypeManagerInterface $plugin_type_manager */
  $plugin_type_manager = $container
    ->get('plugin.plugin_type_manager');
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('string_translation'), $container
    ->get('module_handler'), $container
    ->get('plugin.manager.plugin.plugin_selector'), $plugin_type_manager
    ->getPluginType('payment_status'));
}