You are here

function errorlog_uninstall in Logging and alerts 8

Same name and namespace in other branches
  1. 6.2 errorlog/errorlog.install \errorlog_uninstall()
  2. 6 errorlog/errorlog.install \errorlog_uninstall()
  3. 7.2 errorlog/errorlog.install \errorlog_uninstall()
  4. 7 errorlog/errorlog.install \errorlog_uninstall()
  5. 2.0.x errorlog/errorlog.install \errorlog_uninstall()

Implements hook_uninstall().

File

errorlog/errorlog.install, line 11
Install, update and uninstall functions for the errorlog module.

Code

function errorlog_uninstall() {
  \Drupal::configFactory()
    ->getEditable('errorlog.settings')
    ->delete();
}