function yandex_metrics_uninstall in Yandex.Metrics 7.2
Same name and namespace in other branches
- 6.2 yandex_metrics.install \yandex_metrics_uninstall()
- 6 yandex_metrics.install \yandex_metrics_uninstall()
- 7.3 yandex_metrics.install \yandex_metrics_uninstall()
- 7 yandex_metrics.install \yandex_metrics_uninstall()
Implements hook_uninstall().
File
- ./
yandex_metrics.install, line 10 - Install, uninstall and update the module.
Code
function yandex_metrics_uninstall() {
// Delete module variables and clear variables cache.
db_delete('variable')
->condition('name', 'yandex_metrics_%', 'LIKE')
->execute();
cache_clear_all('variables', 'cache_bootstrap');
}