public function MapFeatureBase::getSettingsForm in Geolocation Field 8.2
Same name and namespace in other branches
- 8.3 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.
23 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.
File
- src/
MapFeatureBase.php, line 57
Class
- MapFeatureBase
- Class MapFeatureBase.
Namespace
Drupal\geolocationCode
public function getSettingsForm(array $settings, array $parents) {
$form = [];
return $form;
}