New module 'Generate Password'
This commit is contained in:
parent
3813ae0e06
commit
ff1286a8e8
5 changed files with 645 additions and 0 deletions
12
modules/genpass/genpass.install
Normal file
12
modules/genpass/genpass.install
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Implementation of hook_uninstall().
|
||||
*/
|
||||
function genpass_uninstall() {
|
||||
variable_del('genpass_algorithm');
|
||||
variable_del('genpass_display');
|
||||
variable_del('genpass_entropy');
|
||||
variable_del('genpass_length');
|
||||
variable_del('genpass_mode');
|
||||
}
|
Reference in a new issue