function account_sync_uninstall in Account Sync 6
Same name and namespace in other branches
- 7.2 account_sync.install \account_sync_uninstall()
Implementation of hook_uninstall().
File
- ./
account_sync.install, line 11 - (un)install and update routines for account_sync.
Code
function account_sync_uninstall() {
variable_del('account_sync_enabled');
variable_del('account_sync_in_enabled');
variable_del('account_sync_server_key');
variable_del('account_sync_servers');
variable_del('account_sync_create_users');
variable_del('account_sync_uid1');
variable_del('account_sync_match_roles');
}