public static function MaestroWebformHandler::create in Maestro 3.x
Same name and namespace in other branches
- 8.2 modules/maestro_webform/src/Plugin/WebformHandler/MaestroWebformHandler.php \Drupal\maestro_webform\Plugin\WebformHandler\MaestroWebformHandler::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
- modules/
maestro_webform/ src/ Plugin/ WebformHandler/ MaestroWebformHandler.php, line 92
Class
- MaestroWebformHandler
- Launches a Maestro workflow with a Webform submission.
Namespace
Drupal\maestro_webform\Plugin\WebformHandlerCode
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
$instance = parent::create($container, $configuration, $plugin_id, $plugin_definition);
$instance->currentUser = $container
->get('current_user');
$instance->moduleHandler = $container
->get('module_handler');
$instance->languageManager = $container
->get('language_manager');
$instance->mailManager = $container
->get('plugin.manager.mail');
$instance->themeManager = $container
->get('webform.theme_manager');
$instance->tokenManager = $container
->get('webform.token_manager');
$instance->elementManager = $container
->get('plugin.manager.webform.element');
return $instance;
}