New module 'Generate Password'

This commit is contained in:
Manuel Cillero 2017-07-26 11:00:31 +02:00
parent 3813ae0e06
commit ff1286a8e8
5 changed files with 645 additions and 0 deletions

View 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');
}