You are here

public static function WebformAttachmentBase::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

1 call to WebformAttachmentBase::create()
WebformEntityPrintAttachment::create in modules/webform_entity_print_attachment/src/Plugin/WebformElement/WebformEntityPrintAttachment.php
Creates an instance of the plugin.
1 method overrides WebformAttachmentBase::create()
WebformEntityPrintAttachment::create in modules/webform_entity_print_attachment/src/Plugin/WebformElement/WebformEntityPrintAttachment.php
Creates an instance of the plugin.

File

modules/webform_attachment/src/Plugin/WebformElement/WebformAttachmentBase.php, line 32

Class

WebformAttachmentBase
Provides a base class for 'webform_attachment' elements.

Namespace

Drupal\webform_attachment\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->conditionsValidator = $container
    ->get('webform_submission.conditions_validator');
  return $instance;
}