public static function DropdownLanguage::create in Dropdown Language 8.2
Same name and namespace in other branches
- 8.3 src/Plugin/Block/DropdownLanguage.php \Drupal\dropdown_language\Plugin\Block\DropdownLanguage::create()
- 8 src/Plugin/Block/DropdownLanguage.php \Drupal\dropdown_language\Plugin\Block\DropdownLanguage::create()
- 3.0.x src/Plugin/Block/DropdownLanguage.php \Drupal\dropdown_language\Plugin\Block\DropdownLanguage::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
File
- src/
Plugin/ Block/ DropdownLanguage.php, line 88
Class
- DropdownLanguage
- Provides an alternative language switcher block.
Namespace
Drupal\dropdown_language\Plugin\BlockCode
public static function create(ContainerInterface $container, array $block_configuration, $plugin_id, $plugin_definition) {
return new static($block_configuration, $plugin_id, $plugin_definition, $container
->get('language_manager'), $container
->get('config.factory'), $container
->get('path.matcher'), $container
->get('current_route_match'));
}