You are here

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

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformHandler/RemotePostWebformHandler.php \Drupal\webform\Plugin\WebformHandler\RemotePostWebformHandler::create()

IMPORTANT: Webform handlers are initialized and serialized when they are attached to a webform. Make sure not include any services as a dependency injection that directly connect to the database. This will prevent "LogicException: The database connection is not serializable." exceptions from being thrown when a form is serialized via an Ajax callback and/or form build.

Overrides WebformHandlerBase::create

File

src/Plugin/WebformHandler/RemotePostWebformHandler.php, line 108

Class

RemotePostWebformHandler
Webform submission remote post handler.

Namespace

Drupal\webform\Plugin\WebformHandler

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  $instance = parent::create($container, $configuration, $plugin_id, $plugin_definition);
  $instance->moduleHandler = $container
    ->get('module_handler');
  $instance->httpClient = $container
    ->get('http_client');
  $instance->tokenManager = $container
    ->get('webform.token_manager');
  $instance->messageManager = $container
    ->get('webform.message_manager');
  $instance->elementManager = $container
    ->get('plugin.manager.webform.element');
  $instance->request = $container
    ->get('request_stack')
    ->getCurrentRequest();
  $instance->requestStack = $container
    ->get('request_stack');
  $instance->kernel = $container
    ->get('kernel');
  return $instance;
}