function simple_ldap_uninstall in Simple LDAP 7
Same name and namespace in other branches
- 7.2 simple_ldap.install \simple_ldap_uninstall()
Implements hook_uninstall().
File
- ./
simple_ldap.install, line 10 - simple_ldap module installation.
Code
function simple_ldap_uninstall() {
variable_del('simple_ldap_host');
variable_del('simple_ldap_port');
variable_del('simple_ldap_starttls');
variable_del('simple_ldap_binddn');
variable_del('simple_ldap_bindpw');
variable_del('simple_ldap_basedn');
variable_del('simple_ldap_readonly');
variable_del('simple_ldap_pagesize');
variable_del('simple_ldap_debug');
variable_del('simple_ldap_opt_referrals');
}