You are here

function location_www_install in Location 7.3

Implements hook_install().

File

contrib/location_www/location_www.install, line 40
Install, update and uninstall functions for the location_www module.

Code

function location_www_install() {

  // Change weight so we execute after location.
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'location_www')
    ->condition('type', 'module')
    ->execute();
}