function performance_uninstall in Performance Logging and Monitoring 6
Same name and namespace in other branches
- 5 performance.install \performance_uninstall()
- 6.2 performance.install \performance_uninstall()
- 7.2 performance.install \performance_uninstall()
- 7 performance.install \performance_uninstall()
Implementation of hook_uninstall().
File
- ./
performance.install, line 71 - Install and update for Performance Logging
Code
function performance_uninstall() {
drupal_uninstall_schema('performance');
db_query("DELETE FROM {variable} WHERE name LIKE 'performance\\_%'");
}