You are here

function location_views_install in Location 5.3

Implementation of hook_install().

File

contrib/location_views/location_views.install, line 11
Installation routines for location_views.

Code

function location_views_install() {

  // Change weight so we execute after location.
  db_query("UPDATE {system} SET weight = 1 WHERE name = '%s' AND type = '%s'", 'location_views', 'module');
}