You are here

public function MapFeatureBase::getSettingsForm in Geolocation Field 8.3

Same name and namespace in other branches
  1. 8.2 src/MapFeatureBase.php \Drupal\geolocation\MapFeatureBase::getSettingsForm()

Provide a generic map settings form array.

Parameters

array $settings: The current map settings.

array $parents: Form specific optional prefix.

Return value

array A form array to be integrated in whatever.

Overrides MapFeatureInterface::getSettingsForm

5 calls to MapFeatureBase::getSettingsForm()
ContextPopup::getSettingsForm in modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ContextPopup.php
Provide a generic map settings form array.
ControlElementBase::getSettingsForm in modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ControlElementBase.php
Provide a generic map settings form array.
ControlElementBase::getSettingsForm in modules/geolocation_yandex/src/Plugin/geolocation/MapFeature/ControlElementBase.php
Provide a generic map settings form array.
ControlElementBase::getSettingsForm in modules/geolocation_leaflet/src/Plugin/geolocation/MapFeature/ControlElementBase.php
Provide a generic map settings form array.
LeafletTileLayer::getSettingsForm in modules/geolocation_leaflet/src/Plugin/geolocation/MapFeature/LeafletTileLayer.php
Provide a generic map settings form array.
27 methods override MapFeatureBase::getSettingsForm()
ContextPopup::getSettingsForm in modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ContextPopup.php
Provide a generic map settings form array.
ControlElementBase::getSettingsForm in modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ControlElementBase.php
Provide a generic map settings form array.
ControlElementBase::getSettingsForm in modules/geolocation_yandex/src/Plugin/geolocation/MapFeature/ControlElementBase.php
Provide a generic map settings form array.
ControlElementBase::getSettingsForm in modules/geolocation_leaflet/src/Plugin/geolocation/MapFeature/ControlElementBase.php
Provide a generic map settings form array.
Drawing::getSettingsForm in modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/Drawing.php
Provide a generic map settings form array.

... See full list

File

src/MapFeatureBase.php, line 55

Class

MapFeatureBase
Class MapFeatureBase.

Namespace

Drupal\geolocation

Code

public function getSettingsForm(array $settings, array $parents) {
  $form = [];
  return $form;
}