You are here

function replication_uninstall in Replication 5

Same name and namespace in other branches
  1. 5.0 replication.install \replication_uninstall()

Implementation of hook_uninstall().

File

./replication.install, line 25

Code

function replication_uninstall() {
  db_query("DROP TABLE {replication}");
  variable_del('replication_online');
  variable_del('replication_admin_identifier');
  variable_del('replication_admin_normal_theme');
  variable_del('replication_admin_warning_theme');
  variable_del('replication_admin_max_recheck');
  variable_del('replication_admin_wait_recheck');
  variable_del('replication_server_mode');
  variable_del('replication_server_url');
  variable_del('replication_http_timeout');
  variable_del('replication_http_speedlimit');
  variable_del('replication_http_retries');
  variable_del('replication_http_port');
  variable_del('replication_http_connect');
  variable_del('replication_timestamp');
}