You are here

protected function GeolocationGoogleMapsSettings::getEditableConfigNames in Geolocation Field 8.3

Same name and namespace in other branches
  1. 8.2 modules/geolocation_google_maps/src/Form/GeolocationGoogleMapsSettings.php \Drupal\geolocation_google_maps\Form\GeolocationGoogleMapsSettings::getEditableConfigNames()

Gets the configuration names that will be editable.

Return value

array An array of configuration object names that are editable if called in conjunction with the trait's config() method.

Overrides ConfigFormBaseTrait::getEditableConfigNames

File

modules/geolocation_google_maps/src/Form/GeolocationGoogleMapsSettings.php, line 187

Class

GeolocationGoogleMapsSettings
Implements the GeolocationGoogleMapAPIkey form controller.

Namespace

Drupal\geolocation_google_maps\Form

Code

protected function getEditableConfigNames() {
  return [
    'geolocation_google_maps.settings',
  ];
}