You are here

public function MapFeatureBase::alterMap in Geolocation Field 8.2

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

Alter render array.

Parameters

array $render_array: Render array.

array $feature_settings: The current feature settings.

array $context: Context like field formatter, field widget or view.

Return value

array Render array.

Overrides MapFeatureInterface::alterMap

32 calls to MapFeatureBase::alterMap()
ClientLocationIndicator::alterMap in modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ClientLocationIndicator.php
Alter render array.
ContextPopup::alterMap in modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ContextPopup.php
Alter render array.
ControlCustomElementBase::alterMap in modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ControlCustomElementBase.php
Alter render array.
ControlElementBase::alterMap in modules/geolocation_yandex/src/Plugin/geolocation/MapFeature/ControlElementBase.php
Alter render array.
ControlElementBase::alterMap in modules/geolocation_leaflet/src/Plugin/geolocation/MapFeature/ControlElementBase.php
Alter render array.

... See full list

32 methods override MapFeatureBase::alterMap()
ClientLocationIndicator::alterMap in modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ClientLocationIndicator.php
Alter render array.
ContextPopup::alterMap in modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ContextPopup.php
Alter render array.
ControlCustomElementBase::alterMap in modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ControlCustomElementBase.php
Alter render array.
ControlElementBase::alterMap in modules/geolocation_yandex/src/Plugin/geolocation/MapFeature/ControlElementBase.php
Alter render array.
ControlElementBase::alterMap in modules/geolocation_leaflet/src/Plugin/geolocation/MapFeature/ControlElementBase.php
Alter render array.

... See full list

File

src/MapFeatureBase.php, line 71

Class

MapFeatureBase
Class MapFeatureBase.

Namespace

Drupal\geolocation

Code

public function alterMap(array $render_array, array $feature_settings, array $context) {
  return $render_array;
}