You are here

public function GeolocationMap::__construct in Geolocation Field 8.2

Same name and namespace in other branches
  1. 8.3 src/Element/GeolocationMap.php \Drupal\geolocation\Element\GeolocationMap::__construct()

Constructs a \Drupal\Component\Plugin\PluginBase object.

Parameters

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.

Overrides PluginBase::__construct

File

src/Element/GeolocationMap.php, line 40

Class

GeolocationMap
Provides a render element to display a geolocation map.

Namespace

Drupal\geolocation\Element

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->mapProviderManager = \Drupal::service('plugin.manager.geolocation.mapprovider');
}