blob: 6115d82d6f52e38828335042b5d6c710aafa8664 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
// $Id$
/**
* @file
* Install file for ArcGIS GMap Integration
*
* This module implements support for ArcGIS API
* into a GMap.
*/
/**
* Implementation of hook_install().
*/
function gmap_arcgis_install() {
/**
* We need to make sure that this module be the last one
* in the hook execution order.
*/
db_query("UPDATE {system} SET weight = 10 WHERE name = 'gmap_arcgis'");
}
|