function performance_uninstall in Performance Logging and Monitoring 7.2
Same name and namespace in other branches
- 5 performance.install \performance_uninstall()
- 6.2 performance.install \performance_uninstall()
- 6 performance.install \performance_uninstall()
- 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();
}