Version Notes
v 1.0.9:
fix router in admin
v 1.0.8:
change google map api loader style
v 1.0.7:
fix issue of marker cluster
v 1.0.6:
update google map api to version 3
v 1.0.5:
issue in short tag
v 1.0.3:
issue in https fixed
v 1.0.2:
some issue fixed
v 1.0.0:
1) convert FIPS 10-4 region code to ISO 3166:2 region code
2) show markers map in backend
3) enable widget for google map
v 0.9:
add Net_GeoIP in to source for easy installation
v 0.8:
1) add configuration for GeoIP data file
2) check online customer from log
3) use Net_GeoIP for IP location detect
v 0.7:
add support for 'GeoIpCity.dat'
v 0.6:
change default design/template
v 0.5:
first release package
Download this release
Release Info
Developer | Magento Core Team |
Extension | Pz_WorldMap |
Version | 1.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.0.8 to 1.0.9
- app/code/community/Pz/WorldMap/Block/Map/Abstract.php +2 -2
- app/code/community/Pz/WorldMap/Model/Ip.php +2 -2
- app/code/community/Pz/WorldMap/controllers/Adminhtml/{OnlineController.php → Worldmap/OnlineController.php} +3 -3
- app/code/community/Pz/WorldMap/etc/adminhtml.xml +77 -0
- app/code/community/Pz/WorldMap/etc/config.xml +13 -57
- app/code/community/Pz/WorldMap/etc/system.xml +1 -1
- app/design/adminhtml/default/default/layout/worldmap.xml +4 -4
- package.xml +8 -5
app/code/community/Pz/WorldMap/Block/Map/Abstract.php
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
* @package Pz_WorldMap
|
26 |
*
|
27 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
28 |
-
* @version $$Id: Abstract.php
|
29 |
* @copyright Copyright (C) 2010 Z.O. Software, China (http://www.zosoft.net)
|
30 |
*/
|
31 |
|
@@ -34,7 +34,7 @@
|
|
34 |
*
|
35 |
* @package Pz_WorldMap
|
36 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
37 |
-
* @version $$Id: Abstract.php
|
38 |
*/
|
39 |
class Pz_WorldMap_Block_Map_Abstract extends Mage_Core_Block_Template implements
|
40 |
Mage_Widget_Block_Interface {
|
25 |
* @package Pz_WorldMap
|
26 |
*
|
27 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
28 |
+
* @version $$Id: Abstract.php 122 2010-12-21 05:28:02Z cwei $$
|
29 |
* @copyright Copyright (C) 2010 Z.O. Software, China (http://www.zosoft.net)
|
30 |
*/
|
31 |
|
34 |
*
|
35 |
* @package Pz_WorldMap
|
36 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
37 |
+
* @version $$Id: Abstract.php 122 2010-12-21 05:28:02Z cwei $$
|
38 |
*/
|
39 |
class Pz_WorldMap_Block_Map_Abstract extends Mage_Core_Block_Template implements
|
40 |
Mage_Widget_Block_Interface {
|
app/code/community/Pz/WorldMap/Model/Ip.php
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
* @package Pz_WorldMap
|
26 |
*
|
27 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
28 |
-
* @version $$Id: Ip.php
|
29 |
* @copyright Copyright (C) 2010 Z.O. Software, China (http://www.zosoft.net)
|
30 |
*/
|
31 |
|
@@ -34,7 +34,7 @@
|
|
34 |
*
|
35 |
* @package Pz_WorldMap
|
36 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
37 |
-
* @version $$Id: Ip.php
|
38 |
*/
|
39 |
class Pz_WorldMap_Model_Ip extends Mage_Core_Model_Abstract {
|
40 |
|
25 |
* @package Pz_WorldMap
|
26 |
*
|
27 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
28 |
+
* @version $$Id: Ip.php 122 2010-12-21 05:28:02Z cwei $$
|
29 |
* @copyright Copyright (C) 2010 Z.O. Software, China (http://www.zosoft.net)
|
30 |
*/
|
31 |
|
34 |
*
|
35 |
* @package Pz_WorldMap
|
36 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
37 |
+
* @version $$Id: Ip.php 122 2010-12-21 05:28:02Z cwei $$
|
38 |
*/
|
39 |
class Pz_WorldMap_Model_Ip extends Mage_Core_Model_Abstract {
|
40 |
|
app/code/community/Pz/WorldMap/controllers/Adminhtml/{OnlineController.php → Worldmap/OnlineController.php}
RENAMED
@@ -25,7 +25,7 @@
|
|
25 |
* @package Pz_WorldMap
|
26 |
*
|
27 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
28 |
-
* @version $$Id: OnlineController.php
|
29 |
* @copyright Copyright (C) 2010 Z.O. Software, China (http://www.zosoft.net)
|
30 |
*/
|
31 |
|
@@ -34,9 +34,9 @@
|
|
34 |
*
|
35 |
* @package Pz_WorldMap
|
36 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
37 |
-
* @version $$Id: OnlineController.php
|
38 |
*/
|
39 |
-
class
|
40 |
|
41 |
public function geomapAction() {
|
42 |
$this->loadLayout();
|
25 |
* @package Pz_WorldMap
|
26 |
*
|
27 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
28 |
+
* @version $$Id: OnlineController.php 127 2011-01-28 09:54:41Z cwei $$
|
29 |
* @copyright Copyright (C) 2010 Z.O. Software, China (http://www.zosoft.net)
|
30 |
*/
|
31 |
|
34 |
*
|
35 |
* @package Pz_WorldMap
|
36 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
37 |
+
* @version $$Id: OnlineController.php 127 2011-01-28 09:54:41Z cwei $$
|
38 |
*/
|
39 |
+
class Pz_WorldMap_Adminhtml_Worldmap_OnlineController extends Mage_Adminhtml_Controller_Action {
|
40 |
|
41 |
public function geomapAction() {
|
42 |
$this->loadLayout();
|
app/code/community/Pz/WorldMap/etc/adminhtml.xml
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Zing Outsourcing Software
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@zosoft.net so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* We supply professinal magento support.
|
19 |
+
* - Custom Design, for layout, template, skin, style ...
|
20 |
+
* - Custom Module, for new featuers, actions, and other custom functions.
|
21 |
+
* - Product import/export, for import product from excel file or other online shop.
|
22 |
+
* - Other DIY for magento.
|
23 |
+
*
|
24 |
+
* @category ZoSoft
|
25 |
+
* @package Pz_WorldMap
|
26 |
+
*
|
27 |
+
* @author Cheng Wei <cheng.wei@zosoft.net>
|
28 |
+
* @version $$Id: config.xml 122 2010-12-21 05:28:02Z cwei $$
|
29 |
+
* @copyright Copyright (C) 2010 Z.O. Software, China (http://www.zosoft.net)
|
30 |
+
*/
|
31 |
+
-->
|
32 |
+
<config>
|
33 |
+
<menu>
|
34 |
+
<customer>
|
35 |
+
<children>
|
36 |
+
<online>
|
37 |
+
<children>
|
38 |
+
<online translate="title" module="customer">
|
39 |
+
<title>Customers</title>
|
40 |
+
<action>adminhtml/customer_online/</action>
|
41 |
+
<sort_order>10</sort_order>
|
42 |
+
</online>
|
43 |
+
<geomap translate="title" module="worldmap">
|
44 |
+
<title>Map (Regions)</title>
|
45 |
+
<sort_order>100</sort_order>
|
46 |
+
<action>adminhtml/worldmap_online/geomap</action>
|
47 |
+
</geomap>
|
48 |
+
<marker translate="title" module="worldmap">
|
49 |
+
<title>Map (Markers)</title>
|
50 |
+
<sort_order>150</sort_order>
|
51 |
+
<action>adminhtml/worldmap_online/marker</action>
|
52 |
+
</marker>
|
53 |
+
</children>
|
54 |
+
</online>
|
55 |
+
</children>
|
56 |
+
</customer>
|
57 |
+
</menu>
|
58 |
+
<acl>
|
59 |
+
<resources>
|
60 |
+
<admin>
|
61 |
+
<children>
|
62 |
+
<system>
|
63 |
+
<children>
|
64 |
+
<config>
|
65 |
+
<children>
|
66 |
+
<worldmap translate="title" module="worldmap">
|
67 |
+
<title>World Map Settings</title>
|
68 |
+
</worldmap>
|
69 |
+
</children>
|
70 |
+
</config>
|
71 |
+
</children>
|
72 |
+
</system>
|
73 |
+
</children>
|
74 |
+
</admin>
|
75 |
+
</resources>
|
76 |
+
</acl>
|
77 |
+
</config>
|
app/code/community/Pz/WorldMap/etc/config.xml
CHANGED
@@ -25,14 +25,14 @@
|
|
25 |
* @package Pz_WorldMap
|
26 |
*
|
27 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
28 |
-
* @version $$Id: config.xml
|
29 |
* @copyright Copyright (C) 2010 Z.O. Software, China (http://www.zosoft.net)
|
30 |
*/
|
31 |
-->
|
32 |
<config>
|
33 |
<modules>
|
34 |
<Pz_WorldMap>
|
35 |
-
<version>1.0.
|
36 |
</Pz_WorldMap>
|
37 |
</modules>
|
38 |
<global>
|
@@ -131,61 +131,17 @@
|
|
131 |
</layout>
|
132 |
</frontend>
|
133 |
<admin>
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
</admin>
|
144 |
-
|
145 |
-
<menu>
|
146 |
-
<customer>
|
147 |
-
<children>
|
148 |
-
<online>
|
149 |
-
<children>
|
150 |
-
<online translate="title" module="customer">
|
151 |
-
<title>Customers</title>
|
152 |
-
<action>adminhtml/customer_online/</action>
|
153 |
-
<sort_order>10</sort_order>
|
154 |
-
</online>
|
155 |
-
<geomap translate="title" module="worldmap">
|
156 |
-
<title>Map (Regions)</title>
|
157 |
-
<sort_order>100</sort_order>
|
158 |
-
<action>worldmap/adminhtml_online/geomap</action>
|
159 |
-
</geomap>
|
160 |
-
<marker translate="title" module="worldmap">
|
161 |
-
<title>Map (Markers)</title>
|
162 |
-
<sort_order>150</sort_order>
|
163 |
-
<action>worldmap/adminhtml_online/marker</action>
|
164 |
-
</marker>
|
165 |
-
</children>
|
166 |
-
</online>
|
167 |
-
</children>
|
168 |
-
</customer>
|
169 |
-
</menu>
|
170 |
-
<acl>
|
171 |
-
<resources>
|
172 |
-
<admin>
|
173 |
-
<children>
|
174 |
-
<system>
|
175 |
-
<children>
|
176 |
-
<config>
|
177 |
-
<children>
|
178 |
-
<worldmap translate="title" module="worldmap">
|
179 |
-
<title>World Map Settings</title>
|
180 |
-
</worldmap>
|
181 |
-
</children>
|
182 |
-
</config>
|
183 |
-
</children>
|
184 |
-
</system>
|
185 |
-
</children>
|
186 |
-
</admin>
|
187 |
-
</resources>
|
188 |
-
</acl>
|
189 |
<layout>
|
190 |
<updates>
|
191 |
<worldmap>
|
@@ -193,7 +149,7 @@
|
|
193 |
</worldmap>
|
194 |
</updates>
|
195 |
</layout>
|
196 |
-
|
197 |
<default>
|
198 |
<worldmap>
|
199 |
<googlemap>
|
25 |
* @package Pz_WorldMap
|
26 |
*
|
27 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
28 |
+
* @version $$Id: config.xml 127 2011-01-28 09:54:41Z cwei $$
|
29 |
* @copyright Copyright (C) 2010 Z.O. Software, China (http://www.zosoft.net)
|
30 |
*/
|
31 |
-->
|
32 |
<config>
|
33 |
<modules>
|
34 |
<Pz_WorldMap>
|
35 |
+
<version>1.0.9</version>
|
36 |
</Pz_WorldMap>
|
37 |
</modules>
|
38 |
<global>
|
131 |
</layout>
|
132 |
</frontend>
|
133 |
<admin>
|
134 |
+
<routers>
|
135 |
+
<adminhtml>
|
136 |
+
<args>
|
137 |
+
<modules>
|
138 |
+
<worldmap after="Mage_Adminhtml">Pz_WorldMap_Adminhtml</worldmap>
|
139 |
+
</modules>
|
140 |
+
</args>
|
141 |
+
</adminhtml>
|
142 |
+
</routers>
|
143 |
</admin>
|
144 |
+
<adminhtml>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
<layout>
|
146 |
<updates>
|
147 |
<worldmap>
|
149 |
</worldmap>
|
150 |
</updates>
|
151 |
</layout>
|
152 |
+
</adminhtml>
|
153 |
<default>
|
154 |
<worldmap>
|
155 |
<googlemap>
|
app/code/community/Pz/WorldMap/etc/system.xml
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
* @package Pz_WorldMap
|
26 |
*
|
27 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
28 |
-
* @version $$Id: system.xml
|
29 |
* @copyright Copyright (C) 2010 Z.O. Software, China (http://www.zosoft.net)
|
30 |
*/
|
31 |
-->
|
25 |
* @package Pz_WorldMap
|
26 |
*
|
27 |
* @author Cheng Wei <cheng.wei@zosoft.net>
|
28 |
+
* @version $$Id: system.xml 122 2010-12-21 05:28:02Z cwei $$
|
29 |
* @copyright Copyright (C) 2010 Z.O. Software, China (http://www.zosoft.net)
|
30 |
*/
|
31 |
-->
|
app/design/adminhtml/default/default/layout/worldmap.xml
CHANGED
@@ -45,16 +45,16 @@ Supported layout update handles (special):
|
|
45 |
<action method="setTemplate"><template>worldmap/page/head.phtml</template></action>
|
46 |
</reference>
|
47 |
</editor>
|
48 |
-
<
|
49 |
<reference name="head">
|
50 |
<action method="setTemplate"><template>worldmap/page/head.phtml</template></action>
|
51 |
</reference>
|
52 |
-
</
|
53 |
-
<
|
54 |
<reference name="head">
|
55 |
<action method="setTemplate"><template>worldmap/page/head.phtml</template></action>
|
56 |
</reference>
|
57 |
-
</
|
58 |
<adminhtml_widget_instance_edit>
|
59 |
<reference name="head">
|
60 |
<action method="setTemplate"><template>worldmap/page/head.phtml</template></action>
|
45 |
<action method="setTemplate"><template>worldmap/page/head.phtml</template></action>
|
46 |
</reference>
|
47 |
</editor>
|
48 |
+
<adminhtml_worldmap_online_marker>
|
49 |
<reference name="head">
|
50 |
<action method="setTemplate"><template>worldmap/page/head.phtml</template></action>
|
51 |
</reference>
|
52 |
+
</adminhtml_worldmap_online_marker>
|
53 |
+
<adminhtml_worldmap_online_geomap>
|
54 |
<reference name="head">
|
55 |
<action method="setTemplate"><template>worldmap/page/head.phtml</template></action>
|
56 |
</reference>
|
57 |
+
</adminhtml_worldmap_online_geomap>
|
58 |
<adminhtml_widget_instance_edit>
|
59 |
<reference name="head">
|
60 |
<action method="setTemplate"><template>worldmap/page/head.phtml</template></action>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Pz_WorldMap</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/afl-3.0.php">Academic Free License (AFL 3.0)</license>
|
7 |
<channel>community</channel>
|
@@ -10,7 +10,10 @@
|
|
10 |
<description>Online user's world map, show who is online and where they are.
|
11 |
|
12 |
Widget for google map.</description>
|
13 |
-
<notes>v 1.0.
|
|
|
|
|
|
|
14 |
change google map api loader style
|
15 |
|
16 |
v 1.0.7:
|
@@ -51,9 +54,9 @@ v 0.6:
|
|
51 |
v 0.5:
|
52 |
first release package</notes>
|
53 |
<authors><author><name>Cheng Wei</name><user>auto-converted</user><email>berlios.o@gmail.com</email></author></authors>
|
54 |
-
<date>
|
55 |
-
<time>
|
56 |
-
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><file name="customer-flag.png" hash="8f33bab9b0c154462489b35140f29fae"/><file name="guest-flag.png" hash="47c715944bf946fd0cd9528cd8a016ae"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><file name="customer-flag.png" hash="8f33bab9b0c154462489b35140f29fae"/><file name="guest-flag.png" hash="47c715944bf946fd0cd9528cd8a016ae"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="worldmap.xml" hash="
|
57 |
<compatible/>
|
58 |
<dependencies/>
|
59 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Pz_WorldMap</name>
|
4 |
+
<version>1.0.9</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/afl-3.0.php">Academic Free License (AFL 3.0)</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Online user's world map, show who is online and where they are.
|
11 |
|
12 |
Widget for google map.</description>
|
13 |
+
<notes>v 1.0.9:
|
14 |
+
fix router in admin
|
15 |
+
|
16 |
+
v 1.0.8:
|
17 |
change google map api loader style
|
18 |
|
19 |
v 1.0.7:
|
54 |
v 0.5:
|
55 |
first release package</notes>
|
56 |
<authors><author><name>Cheng Wei</name><user>auto-converted</user><email>berlios.o@gmail.com</email></author></authors>
|
57 |
+
<date>2011-01-28</date>
|
58 |
+
<time>12:51:12</time>
|
59 |
+
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><file name="customer-flag.png" hash="8f33bab9b0c154462489b35140f29fae"/><file name="guest-flag.png" hash="47c715944bf946fd0cd9528cd8a016ae"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><file name="customer-flag.png" hash="8f33bab9b0c154462489b35140f29fae"/><file name="guest-flag.png" hash="47c715944bf946fd0cd9528cd8a016ae"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="worldmap.xml" hash="3fab0c27e33a33a0b86a258af59566d6"/></dir><dir name="template"><dir name="worldmap"><dir name="info"><file name="geomap.phtml" hash="090e5dd9fbf704864c0c5488fa5c6fbe"/></dir><dir name="map"><file name="country.phtml" hash="053c87aaf144dbecf02d46c45fe38926"/><file name="marker.phtml" hash="834af87c67cf2f14dacf03a175d57788"/><file name="region.phtml" hash="65216785a0a95545890273b2ef314c96"/></dir><dir name="page"><file name="head.phtml" hash="0845e0a7a2d3f323164ebace4d924458"/></dir><dir name="widget"><dir name="map"><file name="selector.phtml" hash="288254500d326f7666d98667c43ca2a1"/></dir><dir name="marker"><file name="container.phtml" hash="1f3708de3e776a59ab32b123df50b15b"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="worldmap.xml" hash="3125174c306ac57e2a31b554b2a5666b"/></dir><dir name="template"><dir name="worldmap"><file name="map.phtml" hash="98c21afd0f5000a45b3cd5983a2b7619"/><file name="online.phtml" hash="c9c1af2b4d0dca3496275aa646ff300d"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="map"><file name="markerclusterer.js" hash="888ca22432babba0581ef0556cce0f6d"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Pz_WorldMap.xml" hash="830c817474800247b94067a37c0dcb94"/></dir></target><target name="magelib"><dir name="PEAR"><dir name="Net"><dir name="GeoIP"><file name="DMA.php" hash="3041b17a8aab69ec3b63c017f1a0432d"/><file name="Location.php" hash="ddb36e4e7cacc2a50b67192a0eb79663"/></dir><file name="GeoIP.php" hash="e7bec2e088af4b24a27864f50a473b88"/></dir><dir name="PEAR"><file name="Exception.php" hash="f364e75223744d460a6bb08420ac94f9"/></dir></dir></target><target name="magecommunity"><dir name="Pz"><dir name="WorldMap"><dir name="Block"><file name="Links.php" hash="98cb18aa80b6e1addee1e09208baa1b6"/><file name="Map.php" hash="3d6d9a2344325adad25470fbfa92f30a"/><file name="Online.php" hash="891861764c00906bce6880f877dc901f"/><dir name="Adminhtml"><dir name="Online"><file name="Tabs.php" hash="d5b84909747d829fb70f166ffa70ac0e"/><dir name="Map"><file name="Geomap.php" hash="3821ff82dd0e2037ffed5b1f482e7e9c"/></dir></dir><dir name="Widget"><dir name="Map"><file name="Selector.php" hash="d3c9eba22a61d6042755ce52142a2566"/></dir><dir name="Marker"><file name="Chooser.php" hash="7f6e16e50100c6936206c53c02c34b41"/></dir></dir></dir><dir name="Map"><file name="Abstract.php" hash="bbed01efc8f7c82edd64a8d15f6395c3"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="5c607322b69e192c96e366d2682fae71"/><dir name="Adminhtml"><dir name="Worldmap"><file name="OnlineController.php" hash="fc0d374330e9291f7f708e4e5204db20"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="7e3274c2487c9f49fc6cb1a056342ff4"/><file name="config.xml" hash="f72391ed1ae01659eba01458e434c908"/><file name="system.xml" hash="eebca351759da13dacd0f15a152768a6"/><file name="widget.xml" hash="61a72497df972e2009df7b56b84e449e"/></dir><dir name="Helper"><file name="Data.php" hash="cb91df6e8ce5572afc3170908cec2710"/></dir><dir name="Model"><file name="Ip.php" hash="cede4be57c22a5f45cc2a80f129cfb33"/><file name="Observe.php" hash="dd9e9487d5d17a4ade1c5784e20b2601"/><file name="Visitor.php" hash="65ab2dc020e82ab51dc19d5f6a9519f5"/><dir name="Entity"><file name="Setup.php" hash="5a8ce3adef8cf0389c16d9bae073e1a8"/><file name="Visitor.php" hash="8e17410114896ad10bc9a0c1e8bb3518"/><dir name="Visitor"><file name="Online.php" hash="c38d1dd15e4b63fbc45696c8e80f741a"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Region.php" hash="4f4f07e53521b7a7e408c67a912346f0"/></dir></dir></dir></dir><dir name="sql"><dir name="worldmap_setup"><file name="mysql4-install-0.1.0.php" hash="1228c98bf7b826922f62892bb87e46c8"/><file name="mysql4-upgrade-0.1.0-0.8.0.php" hash="db893e0bd0fd8cf1ac21d7af923c8d02"/><file name="mysql4-upgrade-0.9.6-1.0.0.php" hash="a6639ea73faf46ddad49316969373248"/></dir></dir></dir></dir></target></contents>
|
60 |
<compatible/>
|
61 |
<dependencies/>
|
62 |
</package>
|