You are here

public function GeocodeFormatterBase::__construct in Geocoder 8.2

Same name and namespace in other branches
  1. 8.3 modules/geocoder_field/src/Plugin/Field/GeocodeFormatterBase.php \Drupal\geocoder_field\Plugin\Field\GeocodeFormatterBase::__construct()

Constructs a GeocodeFormatterBase object.

Parameters

string $plugin_id: The plugin_id for the formatter.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Field\FieldDefinitionInterface $field_definition: The definition of the field to which the formatter is associated.

array $settings: The formatter settings.

string $label: The formatter label display setting.

string $view_mode: The view mode.

array $third_party_settings: Any third party settings.

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: A config factory for retrieving required config objects.

\Drupal\geocoder\Geocoder $geocoder: The geocoder service.

\Drupal\geocoder\ProviderPluginManager $provider_plugin_manager: The provider plugin manager service.

\Drupal\geocoder\DumperPluginManager $dumper_plugin_manager: The dumper plugin manager service.

\Drupal\Core\Render\RendererInterface $renderer: The renderer.

\Drupal\Core\Utility\LinkGeneratorInterface $link_generator: The Link Generator service.

Overrides FormatterBase::__construct

2 calls to GeocodeFormatterBase::__construct()
AddressGeocodeFormatter::__construct in modules/geocoder_address/src/Plugin/Field/FieldFormatter/AddressGeocodeFormatter.php
Constructs a GeocodeFormatterBase object.
FileGeocodeFormatter::__construct in modules/geocoder_field/src/Plugin/Field/FieldFormatter/FileGeocodeFormatter.php
Constructs a GeocodeFormatterFile object.
2 methods override GeocodeFormatterBase::__construct()
AddressGeocodeFormatter::__construct in modules/geocoder_address/src/Plugin/Field/FieldFormatter/AddressGeocodeFormatter.php
Constructs a GeocodeFormatterBase object.
FileGeocodeFormatter::__construct in modules/geocoder_field/src/Plugin/Field/FieldFormatter/FileGeocodeFormatter.php
Constructs a GeocodeFormatterFile object.

File

modules/geocoder_field/src/Plugin/Field/GeocodeFormatterBase.php, line 96

Class

GeocodeFormatterBase
Base Plugin implementation of the Geocode formatter.

Namespace

Drupal\geocoder_field\Plugin\Field

Code

public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, ConfigFactoryInterface $config_factory, Geocoder $geocoder, ProviderPluginManager $provider_plugin_manager, DumperPluginManager $dumper_plugin_manager, RendererInterface $renderer, LinkGeneratorInterface $link_generator) {
  parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
  $this->config = $config_factory
    ->get('geocoder.settings');
  $this->geocoder = $geocoder;
  $this->providerPluginManager = $provider_plugin_manager;
  $this->dumperPluginManager = $dumper_plugin_manager;
  $this->renderer = $renderer;
  $this->link = $link_generator;
}