You are here

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

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

3 calls to WebformCompositeBase::create()
Address::create in src/Plugin/WebformElement/Address.php
Creates an instance of the plugin.
WebformContact::create in src/Plugin/WebformElement/WebformContact.php
Creates an instance of the plugin.
WebformLink::create in src/Plugin/WebformElement/WebformLink.php
Creates an instance of the plugin.
3 methods override WebformCompositeBase::create()
Address::create in src/Plugin/WebformElement/Address.php
Creates an instance of the plugin.
WebformContact::create in src/Plugin/WebformElement/WebformContact.php
Creates an instance of the plugin.
WebformLink::create in src/Plugin/WebformElement/WebformLink.php
Creates an instance of the plugin.

File

src/Plugin/WebformElement/WebformCompositeBase.php, line 60

Class

WebformCompositeBase
Provides a base for composite elements.

Namespace

Drupal\webform\Plugin\WebformElement

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  $instance = parent::create($container, $configuration, $plugin_id, $plugin_definition);
  $instance->fileSystem = $container
    ->get('file_system');
  $instance->renderer = $container
    ->get('renderer');
  $instance->generate = $container
    ->get('webform_submission.generate');
  return $instance;
}