You are here

public function GeocoderBase::getSettings in Geolocation Field 8.2

Same name and namespace in other branches
  1. 8.3 src/GeocoderBase.php \Drupal\geolocation\GeocoderBase::getSettings()

Return plugin settings.

Return value

array Settings.

5 calls to GeocoderBase::getSettings()
GeocoderBase::formAttachGeocoder in src/GeocoderBase.php
Attach geocoding logic to input element.
GeocoderBase::getOptionsForm in src/GeocoderBase.php
Return additional options form.
GoogleGeocoderBase::getOptionsForm in modules/geolocation_google_maps/src/GoogleGeocoderBase.php
Return additional options form.
Photon::formAttachGeocoder in modules/geolocation_leaflet/src/Plugin/geolocation/Geocoder/Photon.php
Attach geocoding logic to input element.
Photon::getOptionsForm in modules/geolocation_leaflet/src/Plugin/geolocation/Geocoder/Photon.php
Return additional options form.

File

src/GeocoderBase.php, line 72

Class

GeocoderBase
Class GeocoderBase.

Namespace

Drupal\geolocation

Code

public function getSettings() {
  return array_replace_recursive($this
    ->getDefaultSettings(), $this->configuration);
}