You are here

function custom_search_uninstall in Custom Search 7

Same name and namespace in other branches
  1. 6 custom_search.install \custom_search_uninstall()

Implements hook_uninstall().

File

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

Code

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