You are here

public function GeofieldWKT::__construct in Geofield 8

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/Plugin/migrate/process/GeofieldWKT.php, line 31

Class

GeofieldWKT
Process WKT string and return the value for the D8 geofield.

Namespace

Drupal\geofield\Plugin\migrate\process

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, WktGeneratorInterface $wkt_generator) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->wktGenerator = $wkt_generator;
}