function geoip_language_install in GeoIP API 6
Same name and namespace in other branches
- 7 geoip_language/geoip_language.install \geoip_language_install()
Implementation of hook_install().
File
- geoip_language/
geoip_language.install, line 37 - file_description
Code
function geoip_language_install() {
drupal_install_schema('geoip_language');
// Make sure this module loads before most "normal" modules. This allows the
// language negotiation to happen in hook_init() rather than hook_boot().
db_query("UPDATE {system} SET weight = -1 WHERE name = 'geoip_language'");
}