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