You are here

mail_login.install in Mail Login 8.2

Same filename and directory in other branches
  1. 8 mail_login.install

Install, update, and uninstall functions for the mail_login module.

File

mail_login.install
View source
<?php

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

/**
 * Implements hook_uninstall().
 */
function mail_login_uninstall() {

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

Functions

Namesort descending Description
mail_login_uninstall Implements hook_uninstall().