function custom_search_install in Custom Search 7
Same name and namespace in other branches
- 8 custom_search.install \custom_search_install()
- 6 custom_search.install \custom_search_install()
Implements hook_install().
File
- ./
custom_search.install, line 11 - Install, update, and uninstall functions for the custom search module.
Code
function custom_search_install() {
db_update('system')
->fields(array(
'weight' => 100,
))
->condition('name', 'custom_search')
->execute();
}