function ip_geoloc_install in IP Geolocation Views & Maps 7
Implements hook_install().
File
- ./
ip_geoloc.install, line 143 - Install and uninstall hooks for IP Geolocation Views & Maps.
Code
function ip_geoloc_install() {
// Set high weight so our implementation of hook init comes last.
db_update('system')
->fields(array(
'weight' => 10,
))
->condition('name', 'ip_geoloc')
->execute();
}