You are here

function contact_save_install in Contact Save 7

Implements hook_install().

File

./contact_save.install, line 80
Install, update, and uninstall functions for the contact_save module.

Code

function contact_save_install() {
  db_update('system')
    ->fields(array(
    'weight' => 10,
  ))
    ->condition('type', 'module')
    ->condition('name', 'contact_save')
    ->execute();
}