You are here

public static function WebformExporterBase::create in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformExporterBase.php \Drupal\webform\Plugin\WebformExporterBase::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

3 calls to WebformExporterBase::create()
TabularBaseWebformExporter::create in src/Plugin/WebformExporter/TabularBaseWebformExporter.php
Creates an instance of the plugin.
WebformEntityPrintWebformExporter::create in modules/webform_entity_print/src/Plugin/WebformExporter/WebformEntityPrintWebformExporter.php
Creates an instance of the plugin.
WebformSubmissionExportImportWebformExporter::create in modules/webform_submission_export_import/src/Plugin/WebformExporter/WebformSubmissionExportImportWebformExporter.php
Creates an instance of the plugin.
3 methods override WebformExporterBase::create()
TabularBaseWebformExporter::create in src/Plugin/WebformExporter/TabularBaseWebformExporter.php
Creates an instance of the plugin.
WebformEntityPrintWebformExporter::create in modules/webform_entity_print/src/Plugin/WebformExporter/WebformEntityPrintWebformExporter.php
Creates an instance of the plugin.
WebformSubmissionExportImportWebformExporter::create in modules/webform_submission_export_import/src/Plugin/WebformExporter/WebformSubmissionExportImportWebformExporter.php
Creates an instance of the plugin.

File

src/Plugin/WebformExporterBase.php, line 61

Class

WebformExporterBase
Provides a base class for a results exporter.

Namespace

Drupal\webform\Plugin

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  $instance = new static($configuration, $plugin_id, $plugin_definition);
  $instance->logger = $container
    ->get('logger.factory')
    ->get('webform');
  $instance->configFactory = $container
    ->get('config.factory');
  $instance->entityTypeManager = $container
    ->get('entity_type.manager');
  $instance->elementManager = $container
    ->get('plugin.manager.webform.element');
  $instance->tokenManager = $container
    ->get('webform.token_manager');
  $instance
    ->setConfiguration($configuration);
  return $instance;
}