You are here

function performance_uninstall in Performance Logging and Monitoring 7.2

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

Implements hook_uninstall().

File

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

Code

function performance_uninstall() {

  // SQL: DELETE FROM {variable} WHERE name LIKE 'performance\_%'
  db_delete('variable')
    ->condition('name', 'performance\\_%', 'LIKE')
    ->execute();
}