popsu-d7/sites/all/modules/variable/variable_realm/variable_realm.install
Bachir Soussi Chiadmi 1bc61b12ad first import
2015-04-08 11:40:19 +02:00

22 lines
447 B
Plaintext

<?php
/**
* @file
* Variable API module install file
*/
/**
* Implements hook_install()
*/
function variable_realm_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_realm' AND type = 'module'");
}
/**
* Refresh cache so new classes are found.
*/
function variable_realm_update_7000() {
drupal_flush_all_caches();
}