You are here

function mail_login_uninstall in Mail Login 8.2

Same name and namespace in other branches
  1. 8 mail_login.install \mail_login_uninstall()

Implements hook_uninstall().

File

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

Code

function mail_login_uninstall() {

  // Deleting the configuration settings while uninstalling the module.
  \Drupal::configFactory()
    ->getEditable('mail_login.settings')
    ->delete();
}