You are here

public function MapProviderBase::__construct in Geolocation Field 8.3

Same name and namespace in other branches
  1. 8.2 src/MapProviderBase.php \Drupal\geolocation\MapProviderBase::__construct()

Constructs a new GeocoderBase 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.

\Drupal\geolocation\MapFeatureManager $map_feature_manager: Map feature manager.

Overrides PluginBase::__construct

File

src/MapProviderBase.php, line 39

Class

MapProviderBase
Provide Map Provider Base class.

Namespace

Drupal\geolocation

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, MapFeatureManager $map_feature_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->mapFeatureManager = $map_feature_manager;
}