diff options
Diffstat (limited to 'gmap_arcgis.install')
-rw-r--r-- | gmap_arcgis.install | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gmap_arcgis.install b/gmap_arcgis.install new file mode 100644 index 0000000..6115d82 --- /dev/null +++ b/gmap_arcgis.install @@ -0,0 +1,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'"); +} |