public function GoogleMap::getConfigurationFields in Google Map Field 8
Callback to get configuration fields.
Return value
array List of configuration fields.
3 calls to GoogleMap::getConfigurationFields()
- GoogleMap::buildConfigurationForm in src/
Feeds/ Target/ GoogleMap.php - Form constructor.
- GoogleMap::getSummary in src/
Feeds/ Target/ GoogleMap.php - Returns the summary for a target.
- GoogleMap::prepareValue in src/
Feeds/ Target/ GoogleMap.php - Prepares a single value.
File
- src/
Feeds/ Target/ GoogleMap.php, line 91
Class
- GoogleMap
- Defines a google map field mapper.
Namespace
Drupal\google_map_field\Feeds\TargetCode
public function getConfigurationFields() {
$fields = [
'name' => 'name',
'lat' => 'latitude',
'lon' => 'logitude',
'zoom' => 'zoom',
'type' => 'type',
'width' => 'width',
'height' => 'height',
'marker' => 'marker',
'traffic' => 'traffic',
'marker_icon' => 'marker_icon',
'controls' => 'controls',
'infowindow' => 'infowindow',
];
return $fields;
}