public static function GeofieldGoogleMapViewStyle::create in Geofield Map 8.2
Same name and namespace in other branches
- 8 src/Plugin/views/style/GeofieldGoogleMapViewStyle.php \Drupal\geofield_map\Plugin\views\style\GeofieldGoogleMapViewStyle::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 PluginBase::create
File
- src/
Plugin/ views/ style/ GeofieldGoogleMapViewStyle.php, line 280
Class
- GeofieldGoogleMapViewStyle
- Style plugin to render a View output as a Leaflet map.
Namespace
Drupal\geofield_map\Plugin\views\styleCode
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('config.factory'), $container
->get('entity_type.manager'), $container
->get('entity_field.manager'), $container
->get('entity_display.repository'), $container
->get('link_generator'), $container
->get('geofield.geophp'), $container
->get('current_user'), $container
->get('messenger'), $container
->get('renderer'), $container
->get('module_handler'), $container
->get('plugin.manager.field.field_type'), $container
->get('geofield_map.google_maps'), $container
->get('plugin.manager.geofield_map.themer'));
}