drupal_uninstall

Versions
5
drupal_uninstall()

Implementation of hook_uninstall().

Code

modules/drupal/drupal.install, line 61

<?php
function drupal_uninstall() {
  db_query('DROP TABLE {client}');
  db_query('DROP TABLE {client_system}');
  variable_del('drupal_authentication_service');
  variable_del('drupal_directory');
  variable_del('drupal_register');
  variable_del('drupal_server');
  variable_del('drupal_system');
  variable_del('drupal_statistics');
  variable_del('drupal_client_service');
  variable_del('drupal_default_da_server');
  variable_del('drupal_default_da_server_only');
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.