You are here

function custom_search_blocks_uninstall in Custom Search 7

Same name and namespace in other branches
  1. 6 modules/custom_search_blocks/custom_search_blocks.install \custom_search_blocks_uninstall()

Implements hook_uninstall().

File

modules/custom_search_blocks/custom_search_blocks.install, line 21
Install, update, and uninstall functions for the custom search module.

Code

function custom_search_blocks_uninstall() {
  db_delete('variable')
    ->condition('name', 'custom_search_blocks_%', 'LIKE')
    ->execute();
}