geolocation-8.x-3.x-dev/modules/geolocation_google_maps/tests/modules/geolocation_google_maps_test/geolocation_google_maps_test.install
modules/geolocation_google_maps/tests/modules/geolocation_google_maps_test/geolocation_google_maps_test.install
<?php
/**
* @file
* Geolocation demo setup.
*/
/**
* Implements hook_install().
*/
function geolocation_google_maps_test_install(): void {
/** @var \Drupal\Core\Config\Config $config */
$config = \Drupal::service('config.factory')->getEditable('geolocation_google_maps.settings');
$config->set('google_map_api_key', 'AIzaSyBTq76GbylL-gnN9oHu4XV6se_N3h0YpWg')->save();
}
