You are here

account_sync.install in Account Sync 6

Same filename and directory in other branches
  1. 7.2 account_sync.install

(un)install and update routines for account_sync.

File

account_sync.install
View source
<?php

/**
 * @file
 * (un)install and update routines for account_sync.
 */

/**
 * Implementation of hook_uninstall().
 */
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');
}

Functions

Namesort descending Description
account_sync_uninstall Implementation of hook_uninstall().