public function GeolocationGooglegeocoderWidget::__construct in Geolocation Field 8
Constructs a WidgetBase object.
Parameters
string $plugin_id: The plugin_id for the widget.
mixed $plugin_definition: The plugin implementation definition.
\Drupal\Core\Field\FieldDefinitionInterface $field_definition: The definition of the field to which the widget is associated.
array $settings: The widget settings.
array $third_party_settings: Any third party settings.
\Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager: The entity field manager.
\Drupal\geolocation\GeolocationCore $geolocation_core: The GeolocationCore object.
Overrides WidgetBase::__construct
File
- src/
Plugin/ Field/ FieldWidget/ GeolocationGooglegeocoderWidget.php, line 64
Class
- GeolocationGooglegeocoderWidget
- Plugin implementation of the 'geolocation_googlegeocoder' widget.
Namespace
Drupal\geolocation\Plugin\Field\FieldWidgetCode
public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, array $third_party_settings, EntityFieldManagerInterface $entity_field_manager, GeolocationCore $geolocation_core) {
parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $third_party_settings);
$this->entityFieldManager = $entity_field_manager;
$this->geolocationCore = $geolocation_core;
}