You are here

function geolocation_google_maps_demo_install in Geolocation Field 8.3

Same name and namespace in other branches
  1. 8.2 modules/geolocation_google_maps/modules/geolocation_google_maps_demo/geolocation_google_maps_demo.install \geolocation_google_maps_demo_install()

Implements hook_install().

File

modules/geolocation_google_maps/modules/geolocation_google_maps_demo/geolocation_google_maps_demo.install, line 11
Geolocation demo setup.

Code

function geolocation_google_maps_demo_install() {

  /** @var \Drupal\Core\Config\Config $config */
  $config = \Drupal::service('config.factory')
    ->getEditable('geolocation_google_maps.settings');
  if (empty($config
    ->get('google_map_api_key'))) {
    $config
      ->set('google_map_api_key', 'AIzaSyChy7jQvcJpTpIiupQhq4wacdVzdum3hvc')
      ->save();
  }
}