You are here

function variable_store_install in Variable 7

Same name and namespace in other branches
  1. 7.2 variable_store/variable_store.install \variable_store_install()

Implements hook_install()

File

variable_store/variable_store.install, line 10
Variable API module install file

Code

function variable_store_install() {

  // Set module weight for it to run before most modules and initialize variable realms
  db_query("UPDATE {system} SET weight = -1000 WHERE name = 'variable_store' AND type = 'module'");
}