function geolocation_test_views_install in Geolocation Field 8
Same name and namespace in other branches
- 8.3 tests/modules/geolocation_test_views/geolocation_test_views.install \geolocation_test_views_install()
- 8.2 tests/modules/geolocation_test_views/geolocation_test_views.install \geolocation_test_views_install()
Implements hook_install().
File
- tests/
modules/ geolocation_test_views/ geolocation_test_views.install, line 11 - Geolocation test setup.
Code
function geolocation_test_views_install() {
/** @var \Drupal\Core\Config\Config $config */
$config = \Drupal::service('config.factory')
->getEditable('geolocation.settings');
if (empty($config
->get('google_map_api_key'))) {
$config
->set('google_map_api_key', 'AIzaSyAS0hYgEXBmvArc7_yXiK9lDrZ1O038weU')
->save();
}
}