You are here

function bootstrap_site_alert_uninstall in Bootstrap Site Alert 8.2

Same name and namespace in other branches
  1. 8 bootstrap_site_alert.install \bootstrap_site_alert_uninstall()
  2. 7 bootstrap_site_alert.install \bootstrap_site_alert_uninstall()

Implements hook_uninstall().

File

./bootstrap_site_alert.install, line 24
The bootstrap_site_alert install file.

Code

function bootstrap_site_alert_uninstall() {
  \Drupal::service('config.factory')
    ->getEditable('bootstrap_site_alert.config')
    ->delete();
}