blob: c4ae2571dc98769991b7aeee30fb017f3a8df68c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
// $Id$
/**
* Implementation of hook_install().
*/
function search_install() {
// Create tables.
drupal_install_schema('search');
}
/**
* Implementation of hook_uninstall().
*/
function search_uninstall() {
// Remove tables.
drupal_uninstall_schema('search');
variable_del('minimum_word_size');
variable_del('overlap_cjk');
}
|