You are here

public function GeocoderArgument::__construct in Geolocation Field 8.3

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

Constructs a Handler 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\GeocoderManager $geocoder_manager: Geocoder manager.

Overrides HandlerBase::__construct

File

src/Plugin/views/argument/GeocoderArgument.php, line 39

Class

GeocoderArgument
Argument handler for geolocation.

Namespace

Drupal\geolocation\Plugin\views\argument

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, GeocoderManager $geocoder_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->geocoderManager = $geocoder_manager;
}