mail_login.install in Mail Login 8
Same filename and directory in other branches
Install, update, and uninstall functions for the mail_login module.
File
mail_login.installView 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
|
Name |
Description |
|---|---|
| mail_login_uninstall | Implements hook_uninstall(). |