public static function WebformBlock::create in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Plugin/Block/WebformBlock.php \Drupal\webform\Plugin\Block\WebformBlock::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
1 call to WebformBlock::create()
- WebformBlockTest::mockWebformBlock in tests/
src/ Unit/ Plugin/ Block/ WebformBlockTest.php - Create a mock webform block.
File
- src/
Plugin/ Block/ WebformBlock.php, line 57
Class
- WebformBlock
- Provides a 'Webform' block.
Namespace
Drupal\webform\Plugin\BlockCode
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
$instance = new static($configuration, $plugin_id, $plugin_definition);
$instance->requestStack = $container
->get('request_stack');
$instance->routeMatch = $container
->get('current_route_match');
$instance->entityTypeManager = $container
->get('entity_type.manager');
$instance->tokenManager = $container
->get('webform.token_manager');
return $instance;
}