You are here

function sharethis_uninstall in ShareThis 7.2

Same name and namespace in other branches
  1. 6 sharethis.install \sharethis_uninstall()

Implements hook_uninstall().

File

./sharethis.install, line 34
This file holds the install information for the ShareThis Module.

Code

function sharethis_uninstall() {
  db_delete('variable')
    ->condition('name', db_like('sharethis_') . '%', 'LIKE')
    ->execute();
  cache_clear_all('variables', 'cache');
}