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