Mks_Storelocator - Version 8.1.3

Version Notes

Add New Feature :-
1. Module Configuration Setting (left menu)
2. Auto Data Load.
3. One Click Run Module
4. Radius Functionality.
5. user friendly admin.
6. Records Import/Export via CSV format.

Download this release

Release Info

Developer mukesh kumar saini
Extension Mks_Storelocator
Version 8.1.3
Comparing to
See all releases


Code changes from version 8.1.2 to 8.1.3

app/design/adminhtml/default/default/template/storelocator/storelocatorbackend.phtml CHANGED
@@ -1 +1,165 @@
1
- <iframe src="http://www.magentocommerce.com/magento-connect/developer/mukeshsaini" width="100%" height="1000"></iframe>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script type="text/javascript">
2
+ function validatestorelocator()
3
+ {
4
+
5
+ if( document.getElementById('mkscsv').value == "no" )
6
+ {
7
+ document.getElementById("mkscsv").style.borderColor="red";
8
+ document.getElementById('mkscsv').focus() ;
9
+ document.getElementById("mksmessage").style.display="block";
10
+
11
+
12
+ return false;
13
+ }
14
+
15
+ }
16
+
17
+
18
+ function mksabout()
19
+ {
20
+ if(document.getElementById("mksabout").style.display=="block")
21
+ {
22
+ document.getElementById("mksabout").style.display="none";
23
+ }else{
24
+ document.getElementById("mksabout").style.display="block";
25
+ }
26
+ }
27
+ </script>
28
+
29
+ <?php $cssurl = str_replace('index.php/','',$this->getBaseUrl());
30
+ if($_REQUEST['mkscsv']=='storelocator')
31
+ {
32
+
33
+ $connection = Mage::getSingleton('core/resource')->getConnection('core_write');
34
+ $path_info = pathinfo($file);
35
+ $ex=$path_info['extension'];
36
+ $file=$_FILES['file']['tmp_name'];
37
+ //$handle = fopen("$file", "r");
38
+ $handle1 = fopen($cssurl."media/storelocator/storelocator.csv", "r");
39
+ $sucessrecord=0;
40
+ $totalrecords=0;
41
+ while (($data = fgetcsv($handle1,1000, ',')) !== FALSE)
42
+ {
43
+ if($sucessrecord>100)
44
+ { break; }
45
+ $val1 = mysql_real_escape_string($data[0]);
46
+ $val2 = mysql_real_escape_string($data[1]);
47
+ $val3 = mysql_real_escape_string($data[2]);
48
+ $val4 = mysql_real_escape_string($data[3]);
49
+ $val5 = mysql_real_escape_string($data[4]);
50
+ $val6 = mysql_real_escape_string($data[5]);
51
+ $val7 = mysql_real_escape_string($data[6]);
52
+ $val8 = mysql_real_escape_string($data[7]);
53
+ $val9 = mysql_real_escape_string($data[8]);
54
+ $val10 = mysql_real_escape_string($data[9]);
55
+ $val11 = mysql_real_escape_string($data[10]);
56
+ $val12 = mysql_real_escape_string($data[11]);
57
+ $val13 = mysql_real_escape_string($data[12]);
58
+ $val14 = mysql_real_escape_string($data[13]);
59
+ $val15 = mysql_real_escape_string($data[14]);
60
+ $val16 = mysql_real_escape_string($data[15]);
61
+
62
+
63
+
64
+ if($totalrecords!=0){
65
+ if($val1!=''){
66
+
67
+
68
+ $sqlmks = $connection->query("SELECT * FROM `mksstorelocator` WHERE `lat`='$val14'");
69
+ $rows1=$sqlmks->fetch();
70
+ if($rows1['lat']=='')
71
+ {
72
+
73
+ $sql = $connection->query("INSERT INTO `mksstorelocator` (`name`, `address`, `zipcode`, `city`, `country_id`, `phone`, `fax`, `description`, `store_url`, `image`, `tradinghours`,`Email`, `radius`, `lat`, `longt`, `status`) VALUES ('{$val1}','{$val2}','{$val3}','{$val4}','{$val5}','{$val6}','{$val7}','{$val8}','{$val9}','{$val10}','{$val11}','{$val12}','{$val13}','{$val14}','{$val15}','{$val16}' )" );
74
+
75
+ $sucessrecord++;
76
+ }
77
+
78
+
79
+ }}
80
+
81
+ $totalrecords++;
82
+ }
83
+
84
+
85
+ if($sql)
86
+ { ?>
87
+ <table style="margin:auto; width:500px; padding:10px;">
88
+ <tr><td align="center" style="color:green; pedding:10px; font-size:16px;" colspan="2"> CSV Record Uploaded Successfully </td></tr>
89
+ <tr>
90
+ <td align="left" style="pedding-right:100px; font-size:12px;"> <?php echo 'Total Records = '.$totalrecords; ?> </td>
91
+ <td align="right" style="color:green; pedding-right:10px; font-size:12px;"> <?php echo 'Success Records = '.$sucessrecord; ?> </td>
92
+ </tr></table>
93
+ <?php } else { ?>
94
+ <table style="margin:auto; width:500px; padding:10px;">
95
+ <tr><td align="center" style="color:red; pedding:10px; font-size:16px;" colspan="2"> CSV Record not unique </td></tr>
96
+ <tr>
97
+ <td align="left" style="pedding-right:100px; font-size:12px;"> <?php echo 'Total Records = '.$totalrecords; ?> </td>
98
+ <td align="right" style="color:green; pedding-right:10px; font-size:12px;"> <?php echo 'Success Records = '.$sucessrecord; ?> </td>
99
+ </tr>
100
+ </table>
101
+ <?php } } ?>
102
+
103
+
104
+ <table style="border:5px #EB5E00 solid; margin:auto; width:500px; padding:10px;">
105
+ <tr><td align="center"><b>One Time Uploding only 100 Record's</b> <a href="mailto:in.mukeshsaini@gmail.com?subject=Store locator Bulk Record Uploading&body=Website URL : <?php echo $cssurl; ?>" style="color:#EB5E00;"> More </a></td></tr>
106
+ <tr><td align="center">
107
+ <form method="get" enctype="multipart/form-data">
108
+ <select name="mkscsv" id="mkscsv">
109
+ <option value="no"> -Select- </option>
110
+ <option value="storelocator"> media/storelocator/storelocator.csv </option>
111
+ </select>
112
+ <input type="submit" name="submit" value=" Start Uploding " onclick="return validatestorelocator();">
113
+ </form>
114
+ <div align="center" style="display:none; color:red; pedding:2px;" id="mksmessage"> Select " media/storelocator/storelocator.csv " File </div>
115
+ </td></tr>
116
+ </table>
117
+
118
+
119
+
120
+ <table border="0" align="center" style="margin-top:20px;">
121
+ <tr><td style="padding-bottom:10px;">
122
+ <div style="float:left; font-size:18px; padding-right:10px;">How to Upload CSV </div>
123
+ <div style="float:left; font-size:15px; color:#EB5E00;"> ( <a href="<?php echo $cssurl; ?>media/storelocator/csvformat/storelocator.csv.zip"> Download storelocator.csv format </a> ) </div>
124
+
125
+ </td></tr>
126
+ <tr><td>
127
+ <h3>If you want to ulpoad your Store informatiom CSV Then Follow the following instrunctions : <h3>
128
+ </td></tr>
129
+ <tr><td>
130
+ </td></tr>
131
+ <tr><td>
132
+ <b>
133
+ 1. upolad a CSV in "/media/storelocator" directory with the filename "storelocator.csv". With the required fileds. </b>
134
+ </td></tr>
135
+ <tr><td>
136
+ <b>
137
+ 2. Then "About Us page" below the store loctore tab in main menu. and then select the file in drop down and then clik on uploading button. </b>
138
+ </td></tr>
139
+ <tr><td>
140
+ </td></tr>
141
+
142
+ <tr><td>
143
+ <b>3. Upload new Store images in this directory "media/storelocator/storelocator". (Name Should not be repeated) </b>
144
+ </td></tr>
145
+ <tr><td>
146
+ </td></tr>
147
+ <tr><td>
148
+ <b>Note: You can download Example CSV from the backend "About Us page" below the store loctore tab in main menu. </b>
149
+ </td></tr>
150
+
151
+
152
+ <tr><td>
153
+ <img src="<?php echo $cssurl; ?>skin/frontend/base/default/storelocatore/img/csvimg.jpg" width="100%"/>
154
+ </td></tr>
155
+ </table>
156
+
157
+
158
+
159
+ <table style="margin:auto; width:500px; margin-top:20px;">
160
+ <tr><td align="center" style="color:#EB5E00; pedding:10px; font-size:16px;" onclick="mksabout();"> Developer Profile </td></tr>
161
+ </table>
162
+
163
+ <iframe style="display:none;" id="mksabout" src="http://www.magentocommerce.com/magento-connect/developer/mukeshsaini" width="100%" height="1000"></iframe>
164
+
165
+
app/design/frontend/base/default/template/storelocator/index.phtml CHANGED
@@ -29,7 +29,16 @@ $row1 = $sql1->fetch();
29
  $latitudex = $row1['lat'];
30
  $longitudex = $row1['longt'];
31
  $addressx = $row1['address'];
 
 
 
32
  $radius = $row1['radius'];
 
 
 
 
 
 
33
 
34
  ?>
35
 
@@ -37,13 +46,12 @@ $radius = $row1['radius'];
37
  <script src="https://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
38
  <script type="text/javascript">
39
 
40
- function map_xxx(x,y,z,a)
41
  {
42
 
43
  var miles = 3;
44
  var latitude = x; // parseFloat("26.850883100000000000");
45
  var longitude = y; // parseFloat("75.824783600000040000");
46
- var address = z; // "Rohini, New Delhi, Delhi, India";
47
  var radius = a; // "Rohini, New Delhi, Delhi, India";
48
 
49
  var latlngPos = new google.maps.LatLng(latitude,longitude);
@@ -73,7 +81,7 @@ var miles = 3;
73
 
74
 
75
 
76
- <body onload="map_xxx('<?php echo $latitudex ?>','<?php echo $longitudex; ?>','<?php echo $addressx; ?>','<?php echo $radius; ?>');">
77
  <?php $sql = $connection->query("select * from $tblname where status='0'" ); ?>
78
 
79
 
@@ -96,7 +104,7 @@ while($row = $sql->fetch())
96
  <tr>
97
  <?php if($name==1) { ?>
98
  <td>
99
- <h3 class="store_name" onclick="map_xxx('<?php echo $row['lat']; ?>','<?php echo $row['longt']; ?>','<?php echo $row['address']; ?>','<?php echo $row['radius']; ?>');"><?php echo $row['name']; ?></h3>
100
  </td>
101
  <?php } ?>
102
  </tr>
29
  $latitudex = $row1['lat'];
30
  $longitudex = $row1['longt'];
31
  $addressx = $row1['address'];
32
+ $radiusx = $row1['radius'];
33
+ if($radiusx!='')
34
+ {
35
  $radius = $row1['radius'];
36
+ }
37
+ else
38
+ {
39
+ $radius = '250';
40
+ }
41
+
42
 
43
  ?>
44
 
46
  <script src="https://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
47
  <script type="text/javascript">
48
 
49
+ function map_xxx(x,y,a)
50
  {
51
 
52
  var miles = 3;
53
  var latitude = x; // parseFloat("26.850883100000000000");
54
  var longitude = y; // parseFloat("75.824783600000040000");
 
55
  var radius = a; // "Rohini, New Delhi, Delhi, India";
56
 
57
  var latlngPos = new google.maps.LatLng(latitude,longitude);
81
 
82
 
83
 
84
+ <body onload="map_xxx('<?php echo $latitudex ?>','<?php echo $longitudex; ?>','<?php echo $radius; ?>');">
85
  <?php $sql = $connection->query("select * from $tblname where status='0'" ); ?>
86
 
87
 
104
  <tr>
105
  <?php if($name==1) { ?>
106
  <td>
107
+ <h3 class="store_name" onclick="map_xxx('<?php echo $row['lat']; ?>','<?php echo $row['longt']; ?>','<?php echo $row['radius']; ?>');"><?php echo $row['name']; ?></h3>
108
  </td>
109
  <?php } ?>
110
  </tr>
media/storelocator/csvformat/storelocator.csv.zip ADDED
Binary file
media/storelocator/storelocator.csv ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ Name,address,Zipcode,City,Country,Phone,Fax,description,Store Url,images,Email,Trading Hours,Radius,Latitude,Longitude,status
2
+ New York NY,123,302018,New York,United States,8764226568,xxxxx1,Malviya Nagar Rajasthan (India),http://www.magentocommerce.com/magento-connect/developer/mukeshsaini,storelocator/storelocator/map1.jpg,mukesh@ptiwebtech.com,7:00 To 8:00PM,250,40.7143528,-74.0059731,0
3
+ Karachi Sindh,124,302018,Karachi,Pakistan,8764226568,xxxxx2,Malviya Nagar Rajasthan (India),http://www.magentocommerce.com/magento-connect/developer/mukeshsaini,storelocator/storelocator/map1.jpg,mukesh@ptiwebtech.com,7:00 To 8:00PM,200,24.8933791,67.0280609,0
4
+ Malviya Nagar,125,302018,jaipur,india,8764226568,xxxxx3,Malviya Nagar Rajasthan (India),http://www.magentocommerce.com/magento-connect/developer/mukeshsaini,storelocator/storelocator/map1.jpg,mukesh@ptiwebtech.com,7:00 To 8:00PM,200,26.8571264,75.8127199,0
5
+ Malviya Nagar,126,302018,jaipur,india,8764226568,xxxxx4,Malviya Nagar Rajasthan (India),http://www.magentocommerce.com/magento-connect/developer/mukeshsaini,storelocator/storelocator/map1.jpg,mukesh@ptiwebtech.com,7:00 To 8:00PM,200,26.8571264,75.8127199,0
6
+ Malviya Nagar,127,302018,jaipur,india,8764226568,xxxxx5,Malviya Nagar Rajasthan (India),http://www.magentocommerce.com/magento-connect/developer/mukeshsaini,storelocator/storelocator/map1.jpg,mukesh@ptiwebtech.com,7:00 To 8:00PM,200,27.8571264,75.8127199,0
7
+ Malviya Nagar,128,302018,jaipur,india,8764226568,xxxxx6,Malviya Nagar Rajasthan (India),http://www.magentocommerce.com/magento-connect/developer/mukeshsaini,storelocator/storelocator/map1.jpg,mukesh@ptiwebtech.com,7:00 To 8:00PM,200,28.8571264,75.8127199,0
8
+ Malviya Nagar,129,302018,jaipur,india,8764226568,xxxxx7,Malviya Nagar Rajasthan (India),http://www.magentocommerce.com/magento-connect/developer/mukeshsaini,storelocator/storelocator/map1.jpg,mukesh@ptiwebtech.com,7:00 To 8:00PM,200,29.8571264,75.8127199,0
9
+ Malviya Nagar,130,302018,jaipur,india,8764226568,xxxxx8,Malviya Nagar Rajasthan (India),http://www.magentocommerce.com/magento-connect/developer/mukeshsaini,storelocator/storelocator/map1.jpg,mukesh@ptiwebtech.com,7:00 To 8:00PM,200,30.8571264,75.8127199,0
10
+ Malviya Nagar,131,302018,jaipur,india,8764226568,xxxxx9,Malviya Nagar Rajasthan (India),http://www.magentocommerce.com/magento-connect/developer/mukeshsaini,storelocator/storelocator/map1.jpg,mukesh@ptiwebtech.com,7:00 To 8:00PM,200,26.8571264,75.8127199,0
11
+ Malviya Nagar,132,302018,jaipur,india,8764226568,xxxxx10,Malviya Nagar Rajasthan (India),http://www.magentocommerce.com/magento-connect/developer/mukeshsaini,storelocator/storelocator/map1.jpg,mukesh@ptiwebtech.com,7:00 To 8:00PM,200,26.85712641,75.8127199,0
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mks_Storelocator</name>
4
- <version>8.1.2</version>
5
  <stability>stable</stability>
6
  <license>OSL</license>
7
  <channel>community</channel>
@@ -13,11 +13,12 @@
13
  2. Auto Data Load.&#xD;
14
  3. One Click Run Module&#xD;
15
  4. Radius Functionality.&#xD;
16
- 5. user friendly admin.</notes>
 
17
  <authors><author><name>mukesh kumar saini</name><user>mukeshbagri</user><email>in.mukeshsaini@gmail.com</email></author></authors>
18
- <date>2014-03-25</date>
19
- <time>13:00:26</time>
20
- <contents><target name="mageetc"><dir name="modules"><file name="Mks_Storelocator.xml" hash="5db52931092f06e184dc599fd0277229"/></dir></target><target name="magecommunity"><dir name="Mks"><dir name="Storelocator"><dir name="Block"><dir name="Adminhtml"><dir name="Storelocator"><dir name="Edit"><file name="Form.php" hash="00fed13f02e804d93bac7258689769ad"/><dir name="Tab"><file name="Form.php" hash="da3f13dd930a591372ad0c14796c1e54"/></dir><file name="Tabs.php" hash="8819f35cd4af4b61d14bf377c58432b6"/></dir><file name="Edit.php" hash="9be35d036a69cfb545d2f1c1649cb6ba"/><file name="Grid.php" hash="da9a9f1d7359078f7f388440020b2c3e"/></dir><file name="Storelocator.php" hash="81770ec5e092a177c22e188b8db38d7e"/><file name="Storelocatorbackend.php" hash="d600cb8ff797f008c7c652a299305c8d"/></dir><file name="Index.php" hash="4a9374eced7efc8e0dc9aafb9ff3cef4"/></dir><dir name="Helper"><file name="Data.php" hash="083521dd42bf734a864e06dceb37b5a0"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Storelocator"><file name="Collection.php" hash="183c5eeeb2ef6b444bfc08a829b93cde"/></dir><file name="Storelocator.php" hash="29d65325bd746be070275726e309afdb"/></dir><file name="Storelocator.php" hash="e91d32a733f49d62d54c1335a57e2ee5"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="StorelocatorController.php" hash="1c8564c74994999c3e5177450b64241b"/><file name="StorelocatorbackendController.php" hash="342691ea69bd91fed7db67032fa69e32"/></dir><file name="IndexController.php" hash="852566fcfe7bf18f80926d04af88821e"/></dir><dir name="etc"><file name="adminhtml.xml" hash="49f58436b0c5e5d0ff6ed5b2f7eb0b8a"/><file name="config.xml" hash="aa5b1df1e9cbf67ea541db01f5ccc23b"/><file name="system.xml" hash="e903fefb54e74e5db482baee62d46185"/></dir><dir name="sql"><dir name="storelocator_setup"><file name="mysql4-install-8.1.1.php" hash="a6c9e74024278161f3ed0653dfbc9eb0"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="storelocator.xml" hash="c5ce52ab3f3f3d71dbb902134642e2dc"/></dir><dir name="template"><dir name="storelocator"><file name="storelocatorbackend.phtml" hash="df18a76ac5d10cd61c8cd0b9fa2ee247"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="storelocator.xml" hash="5f5622865dce575fa97450411d8ec442"/></dir><dir name="template"><dir name="storelocator"><file name="config.phtml" hash="aec776af2155c512cba75ee93cd77cc7"/><file name="index.phtml" hash="c38e2df6f5bdca53fdddcc106699e271"/><file name="new_index.phtml" hash="29c6340d08453dffa1c599bad1aab994"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="storelocator"><dir name="storelocator"><file name="14948.jpg" hash="cf7b5d700a4d3ed77ddb842de67ac0bc"/><file name="apsara-non-dust.jpg" hash="643b2a73671d1e352265ff49412c8c72"/><file name="map1.jpg" hash="a27ada4df9c7106527e4db655c7d15ed"/><file name="map2.jpg" hash="d632084de7a0e99a8eeb4a3720be3066"/><file name="map3.jpg" hash="bd06793b455379880266505f5ea49b81"/></dir></dir></target></contents>
21
  <compatible/>
22
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
23
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mks_Storelocator</name>
4
+ <version>8.1.3</version>
5
  <stability>stable</stability>
6
  <license>OSL</license>
7
  <channel>community</channel>
13
  2. Auto Data Load.&#xD;
14
  3. One Click Run Module&#xD;
15
  4. Radius Functionality.&#xD;
16
+ 5. user friendly admin.&#xD;
17
+ 6. Records Import/Export via CSV format.</notes>
18
  <authors><author><name>mukesh kumar saini</name><user>mukeshbagri</user><email>in.mukeshsaini@gmail.com</email></author></authors>
19
+ <date>2014-04-04</date>
20
+ <time>12:53:24</time>
21
+ <contents><target name="mageetc"><dir name="modules"><file name="Mks_Storelocator.xml" hash="5db52931092f06e184dc599fd0277229"/></dir></target><target name="magecommunity"><dir name="Mks"><dir name="Storelocator"><dir name="Block"><dir name="Adminhtml"><dir name="Storelocator"><dir name="Edit"><file name="Form.php" hash="00fed13f02e804d93bac7258689769ad"/><dir name="Tab"><file name="Form.php" hash="da3f13dd930a591372ad0c14796c1e54"/></dir><file name="Tabs.php" hash="8819f35cd4af4b61d14bf377c58432b6"/></dir><file name="Edit.php" hash="9be35d036a69cfb545d2f1c1649cb6ba"/><file name="Grid.php" hash="da9a9f1d7359078f7f388440020b2c3e"/></dir><file name="Storelocator.php" hash="81770ec5e092a177c22e188b8db38d7e"/><file name="Storelocatorbackend.php" hash="d600cb8ff797f008c7c652a299305c8d"/></dir><file name="Index.php" hash="4a9374eced7efc8e0dc9aafb9ff3cef4"/></dir><dir name="Helper"><file name="Data.php" hash="083521dd42bf734a864e06dceb37b5a0"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Storelocator"><file name="Collection.php" hash="183c5eeeb2ef6b444bfc08a829b93cde"/></dir><file name="Storelocator.php" hash="29d65325bd746be070275726e309afdb"/></dir><file name="Storelocator.php" hash="e91d32a733f49d62d54c1335a57e2ee5"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="StorelocatorController.php" hash="1c8564c74994999c3e5177450b64241b"/><file name="StorelocatorbackendController.php" hash="342691ea69bd91fed7db67032fa69e32"/></dir><file name="IndexController.php" hash="852566fcfe7bf18f80926d04af88821e"/></dir><dir name="etc"><file name="adminhtml.xml" hash="49f58436b0c5e5d0ff6ed5b2f7eb0b8a"/><file name="config.xml" hash="aa5b1df1e9cbf67ea541db01f5ccc23b"/><file name="system.xml" hash="e903fefb54e74e5db482baee62d46185"/></dir><dir name="sql"><dir name="storelocator_setup"><file name="mysql4-install-8.1.1.php" hash="a6c9e74024278161f3ed0653dfbc9eb0"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="storelocator.xml" hash="c5ce52ab3f3f3d71dbb902134642e2dc"/></dir><dir name="template"><dir name="storelocator"><file name="storelocatorbackend.phtml" hash="8d727711d22632196bf81bf7b0f21bd8"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="storelocator.xml" hash="5f5622865dce575fa97450411d8ec442"/></dir><dir name="template"><dir name="storelocator"><file name="config.phtml" hash="aec776af2155c512cba75ee93cd77cc7"/><file name="index.phtml" hash="1e5c038a7a6ae1f947c8e3e0686ae386"/><file name="new_index.phtml" hash="29c6340d08453dffa1c599bad1aab994"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="storelocator"><dir name="csvformat"><file name="storelocator.csv.zip" hash="7e0cbdf41a41ddd35677bdd393031326"/></dir><dir name="storelocator"><file name="14948.jpg" hash="cf7b5d700a4d3ed77ddb842de67ac0bc"/><file name="apsara-non-dust.jpg" hash="643b2a73671d1e352265ff49412c8c72"/><file name="map1.jpg" hash="a27ada4df9c7106527e4db655c7d15ed"/><file name="map2.jpg" hash="d632084de7a0e99a8eeb4a3720be3066"/><file name="map3.jpg" hash="bd06793b455379880266505f5ea49b81"/></dir><file name="storelocator.csv" hash="6449c28acc1d5525f8badfaecc3ee2bb"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="storelocatore"><dir name="img"><file name="csvimg.jpg" hash="35e04257829baebf70dd10172bef0487"/></dir></dir></dir></dir></dir></target></contents>
22
  <compatible/>
23
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
24
  </package>
skin/frontend/base/default/storelocatore/img/csvimg.jpg ADDED
Binary file