You are here

function deploy_uninstall in Deploy - Content Staging 6

Same name and namespace in other branches
  1. 5 deploy.install \deploy_uninstall()
  2. 7.3 deploy.install \deploy_uninstall()

Implementation of hook_uninstall().

File

./deploy.install, line 221
Contains install and update functions for Deploy.

Code

function deploy_uninstall() {
  drupal_uninstall_schema('deploy');

  // Delete all the deploy variables and then clear the variable cache
  db_query("DELETE FROM {variable} WHERE name LIKE 'deploy_%'");
  cache_clear_all('variables', 'cache');
}