You are here

function globalredirect_install in Global Redirect 5

Implementation of hook_install(). Configures the site - currently only changing the weight of the module to be the last to run.

File

./globalredirect.install, line 13
This is the GlobalRedirect install file which configures the system during install.

Code

function globalredirect_install() {
  db_query("UPDATE {system} SET weight = 1500 WHERE name = 'globalredirect'");
}