You are here

errorlog.install in Logging and alerts 8

Install, update and uninstall functions for the errorlog module.

File

errorlog/errorlog.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the errorlog module.
 */

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

Functions

Namesort descending Description
errorlog_uninstall Implements hook_uninstall().