You are here

function http_auth_uninstall in HTTP Auth 8

Same name and namespace in other branches
  1. 7 http_auth.install \http_auth_uninstall()

Implements hook_uninstall().

File

./http_auth.install, line 11
Uninstall functions for HTTP Auth module.

Code

function http_auth_uninstall() {
  \Drupal::service('config.factory')
    ->getEditable('http_auth.settings')
    ->delete();
}