You are here

function custom_search_blocks_install in Custom Search 7

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

Implements hook_install().

File

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

Code

function custom_search_blocks_install() {
  db_update('system')
    ->fields(array(
    'weight' => 99,
  ))
    ->condition('name', 'custom_search_blocks')
    ->execute();
}