You are here

function boost_uninstall in Boost 7

Same name and namespace in other branches
  1. 6 boost.install \boost_uninstall()

Implements hook_uninstall().

File

./boost.install, line 27
Handles Boost module installation and upgrade tasks.

Code

function boost_uninstall() {

  // Clear variables.
  $name = 'boost_';
  db_delete('variable')
    ->condition('name', db_like($name) . '%', 'LIKE')
    ->execute();
  cache_clear_all('variables', 'cache_bootstrap');
}