You are here

function drupalmonitor_uninstall in Drupalmonitor 8

Implements hook_uninstall().

File

./drupalmonitor.install, line 51
Installer file of drupalmonitor module

Code

function drupalmonitor_uninstall() {

  // Delete Settings.
  \Drupal::configFactory()
    ->getEditable(Settings::CONFIG_NAME)
    ->delete();

  // Uninstall schema.
  drupal_uninstall_schema('drupalmonitor');
}