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