You are here

function location_email_install in Location 7.3

Implements hook_install().

File

contrib/location_email/location_email.install, line 39
Install, update and uninstall functions for the location_email module.

Code

function location_email_install() {

  // Change weight.
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'location_email')
    ->condition('type', 'module')
    ->execute();
}