You are here

function performance_uninstall in Performance Logging and Monitoring 6.2

Same name and namespace in other branches
  1. 5 performance.install \performance_uninstall()
  2. 6 performance.install \performance_uninstall()
  3. 7.2 performance.install \performance_uninstall()
  4. 7 performance.install \performance_uninstall()

Implementation of hook_uninstall().

File

./performance.install, line 151
Install and update for Performance Logging

Code

function performance_uninstall() {
  drupal_uninstall_schema('performance');
  db_query('DELETE FROM {variable} WHERE name LIKE "performance\\_%"');
}