function ldapsync_uninstall in LDAP integration 6
Implementation of hook_uninstall().
File
- ./
ldapsync.install, line 37 - ldapsync module installation and upgrade code.
Code
function ldapsync_uninstall() {
$ret = array();
variable_del('ldapsync_time_interval');
variable_del('ldapsync_last_sync_time');
variable_del('ldapsync_existing_only');
variable_del('ldapsync_login_conflict');
variable_del('ldapsync_missing_users_action');
variable_del('ldapsync_load_user_by');
variable_del('ldapsync_filter');
variable_del('ldapsync_filter_append_default');
return $ret;
}