Version Notes
you can call store locator on your CMS page by this code
{{block type="storelocator/storelocator" name="storelocator" template="storelocator/storelocator.phtml" }}
Download this release
Release Info
Developer | Sparx |
Extension | Sparx_Storelocator |
Version | 0.1.2 |
Comparing to | |
See all releases |
Code changes from version 0.1.0 to 0.1.2
- app/code/community/Sparx/Storelocator/Block/Storelocator.php +15 -1
- app/code/community/Sparx/Storelocator/etc/config.xml +1 -1
- app/code/community/Sparx/Storelocator/etc/config.xml~ +103 -0
- app/code/community/Sparx/Storelocator/sql/storelocator_setup/mysql4-upgrade-0.1.0-0.1.1.php +1 -1
- app/code/community/Sparx/Storelocator/sql/storelocator_setup/mysql4-upgrade-0.1.0-0.1.1.php~ +10 -0
- app/code/community/Sparx/Storelocator/sql/storelocator_setup/mysql4-upgrade-0.1.1-0.1.2.php +3 -0
- app/design/frontend/base/default/layout/storelocator.xml +6 -22
- app/design/frontend/base/default/template/storelocator/storelocator.phtml +3 -0
- package.xml +7 -5
app/code/community/Sparx/Storelocator/Block/Storelocator.php
CHANGED
@@ -14,4 +14,18 @@ class Sparx_Storelocator_Block_Storelocator extends Mage_Core_Block_Template
|
|
14 |
return $this->getData('storelocator');
|
15 |
|
16 |
}
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
return $this->getData('storelocator');
|
15 |
|
16 |
}
|
17 |
+
public function getJsandCss(){
|
18 |
+
|
19 |
+
$html.= '<link rel="stylesheet" type="text/css" href="'.$this->getSkinUrl('storelocator/css/map.css').'" media="all" />';
|
20 |
+
if(Mage::getStoreConfig('storelocator/settings/jquery')){
|
21 |
+
$html.= '<script type="text/javascript" src="'.$this->getSkinUrl('storelocator/js/jquery-1.10.1.min.js').'"></script>';
|
22 |
+
|
23 |
+
}
|
24 |
+
$html.= '<script type="text/javascript" src="'.$this->getSkinUrl('storelocator/js/noConflict.js').'"></script>';
|
25 |
+
$html.= '<script type="text/javascript" src="'.$this->getSkinUrl('storelocator/js/handlebars-1.0.0.min.js').'"></script>';
|
26 |
+
$html.= '<script type="text/javascript" src="'.$this->getSkinUrl('storelocator/js/jquery.storelocator.js').'"></script>';
|
27 |
+
|
28 |
+
return $html;
|
29 |
+
|
30 |
+
}
|
31 |
+
}
|
app/code/community/Sparx/Storelocator/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Sparx_Storelocator>
|
5 |
-
<version>0.1.
|
6 |
</Sparx_Storelocator>
|
7 |
</modules>
|
8 |
<frontend>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Sparx_Storelocator>
|
5 |
+
<version>0.1.2</version>
|
6 |
</Sparx_Storelocator>
|
7 |
</modules>
|
8 |
<frontend>
|
app/code/community/Sparx/Storelocator/etc/config.xml~
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<Sparx_Storelocator>
|
5 |
+
<version>0.1.2</version>
|
6 |
+
</Sparx_Storelocator>
|
7 |
+
</modules>
|
8 |
+
<frontend>
|
9 |
+
<routers>
|
10 |
+
<storelocator>
|
11 |
+
<use>standard</use>
|
12 |
+
<args>
|
13 |
+
<module>Sparx_Storelocator</module>
|
14 |
+
<frontName>storelocator</frontName>
|
15 |
+
</args>
|
16 |
+
</storelocator>
|
17 |
+
</routers>
|
18 |
+
<layout>
|
19 |
+
<updates>
|
20 |
+
<storelocator>
|
21 |
+
<file>storelocator.xml</file>
|
22 |
+
</storelocator>
|
23 |
+
</updates>
|
24 |
+
</layout>
|
25 |
+
</frontend>
|
26 |
+
<admin>
|
27 |
+
<routers>
|
28 |
+
<storelocator>
|
29 |
+
<use>admin</use>
|
30 |
+
<args>
|
31 |
+
<module>Sparx_Storelocator</module>
|
32 |
+
<frontName>storelocator</frontName>
|
33 |
+
</args>
|
34 |
+
</storelocator>
|
35 |
+
</routers>
|
36 |
+
</admin>
|
37 |
+
<adminhtml>
|
38 |
+
<layout>
|
39 |
+
<updates>
|
40 |
+
<storelocator>
|
41 |
+
<file>storelocator.xml</file>
|
42 |
+
</storelocator>
|
43 |
+
</updates>
|
44 |
+
</layout>
|
45 |
+
</adminhtml>
|
46 |
+
<global>
|
47 |
+
<models>
|
48 |
+
<storelocator>
|
49 |
+
<class>Sparx_Storelocator_Model</class>
|
50 |
+
<resourceModel>storelocator_mysql4</resourceModel>
|
51 |
+
</storelocator>
|
52 |
+
<storelocator_mysql4>
|
53 |
+
<class>Sparx_Storelocator_Model_Mysql4</class>
|
54 |
+
<entities>
|
55 |
+
<storelocator>
|
56 |
+
<table>storelocator</table>
|
57 |
+
</storelocator>
|
58 |
+
</entities>
|
59 |
+
</storelocator_mysql4>
|
60 |
+
</models>
|
61 |
+
<resources>
|
62 |
+
<storelocator_setup>
|
63 |
+
<setup>
|
64 |
+
<module>Sparx_Storelocator</module>
|
65 |
+
</setup>
|
66 |
+
<connection>
|
67 |
+
<use>core_setup</use>
|
68 |
+
</connection>
|
69 |
+
</storelocator_setup>
|
70 |
+
<storelocator_write>
|
71 |
+
<connection>
|
72 |
+
<use>core_write</use>
|
73 |
+
</connection>
|
74 |
+
</storelocator_write>
|
75 |
+
<storelocator_read>
|
76 |
+
<connection>
|
77 |
+
<use>core_read</use>
|
78 |
+
</connection>
|
79 |
+
</storelocator_read>
|
80 |
+
</resources>
|
81 |
+
<blocks>
|
82 |
+
<storelocator>
|
83 |
+
<class>Sparx_Storelocator_Block</class>
|
84 |
+
</storelocator>
|
85 |
+
</blocks>
|
86 |
+
<helpers>
|
87 |
+
<storelocator>
|
88 |
+
<class>Sparx_Storelocator_Helper</class>
|
89 |
+
</storelocator>
|
90 |
+
</helpers>
|
91 |
+
</global>
|
92 |
+
|
93 |
+
<default>
|
94 |
+
<storelocator>
|
95 |
+
<settings>
|
96 |
+
<defaultlon>78.0000</defaultlon>
|
97 |
+
<defaultlat>21.0000</defaultlat>
|
98 |
+
<active>1</active>
|
99 |
+
<jquery>1</jquery>
|
100 |
+
</settings>
|
101 |
+
</storelocator>
|
102 |
+
</default>
|
103 |
+
</config>
|
app/code/community/Sparx/Storelocator/sql/storelocator_setup/mysql4-upgrade-0.1.0-0.1.1.php
CHANGED
@@ -4,7 +4,7 @@ $installer = $this;
|
|
4 |
$installer->startSetup();
|
5 |
$installer->run("
|
6 |
INSERT INTO {$this->getTable('storelocator')} (`name`, `latitude`, `longitude`, `address`, `city`, `state`, `country`, `zipcode`, `phone`, `web_url`, `email`, `hours1`, `status`, `storeimage`, `description`) VALUES
|
7 |
-
('Sparx It Solutions', '28.56285', '77.40563299999997', 'A-02 sparx it solution ', 'Noida', 'Uttar Pradesh', 'IN', '201307', '06666 555 444', 'sparxitsolutions.com', '
|
8 |
");
|
9 |
|
10 |
$installer->endSetup();
|
4 |
$installer->startSetup();
|
5 |
$installer->run("
|
6 |
INSERT INTO {$this->getTable('storelocator')} (`name`, `latitude`, `longitude`, `address`, `city`, `state`, `country`, `zipcode`, `phone`, `web_url`, `email`, `hours1`, `status`, `storeimage`, `description`) VALUES
|
7 |
+
('Sparx It Solutions', '28.56285', '77.40563299999997', 'A-02 sparx it solution ', 'Noida', 'Uttar Pradesh', 'IN', '201307', '06666 555 444', 'sparxitsolutions.com', 'rkrameshraja@gmail.com', '9:30 am To 6:30 pm', '1', 'logo.jpg', 'Sparx It Solutions');
|
8 |
");
|
9 |
|
10 |
$installer->endSetup();
|
app/code/community/Sparx/Storelocator/sql/storelocator_setup/mysql4-upgrade-0.1.0-0.1.1.php~
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$installer = $this;
|
3 |
+
|
4 |
+
$installer->startSetup();
|
5 |
+
$installer->run("
|
6 |
+
INSERT INTO {$this->getTable('storelocator')} (`name`, `latitude`, `longitude`, `address`, `city`, `state`, `country`, `zipcode`, `phone`, `web_url`, `email`, `hours1`, `status`, `storeimage`, `description`) VALUES
|
7 |
+
('Sparx It Solutions', '28.56285', '77.40563299999997', 'A-02 sparx it solution ', 'Noida', 'Uttar Pradesh', 'IN', '201307', '06666 555 444', 'sparxitsolutions.com', 'dharmveer@gmail.com', '9:30 am To 6:30 pm', '1', 'logo.jpg', 'Sparx It Solutions');
|
8 |
+
");
|
9 |
+
|
10 |
+
$installer->endSetup();
|
app/code/community/Sparx/Storelocator/sql/storelocator_setup/mysql4-upgrade-0.1.1-0.1.2.php
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$installer = $this;
|
3 |
+
?>
|
app/design/frontend/base/default/layout/storelocator.xml
CHANGED
@@ -1,30 +1,11 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<layout version="0.1.0">
|
3 |
-
|
4 |
<default>
|
5 |
<reference name="top.links">
|
6 |
<action method="addLink" ifconfig="storelocator/settings/active" translate="label title" module="storelocator"><label>Store Locator</label><url helper="storelocator/getStorelocatorUrl"/><title>Store Locator</title><prepare/><urlParams/><position>50</position></action>
|
7 |
</reference>
|
8 |
</default>
|
9 |
-
|
10 |
-
<storelocator_index_index>
|
11 |
-
<reference name="head">
|
12 |
-
<action method="addCss">
|
13 |
-
<stylesheet>storelocator/css/map.css</stylesheet>
|
14 |
-
</action>
|
15 |
-
<action ifconfig="storelocator/settings/jquery" method="addItem"><type>skin_js</type><name>storelocator/js/jquery-1.10.1.min.js</name></action>
|
16 |
-
<action method="addItem"><type>skin_js</type><name>storelocator/js/noConflict.js</name></action>
|
17 |
-
<action method="addItem"><type>skin_js</type><name>storelocator/js/handlebars-1.0.0.min.js</name></action>
|
18 |
-
|
19 |
-
<block type="core/text" name="google.cdn.jquery">
|
20 |
-
<action method="setText">
|
21 |
-
<text><![CDATA[<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script><script type="text/javascript">jQuery.noConflict();</script>]]>
|
22 |
-
</text>
|
23 |
-
</action>
|
24 |
-
</block>
|
25 |
-
<action method="addItem"><type>skin_js</type><name>storelocator/js/jquery.storelocator.js</name></action>
|
26 |
-
|
27 |
-
</reference>
|
28 |
<reference name="root">
|
29 |
<action method="setTemplate">
|
30 |
<template>page/1column.phtml</template>
|
@@ -44,7 +25,10 @@
|
|
44 |
<action method="addItem"><type>skin_js</type><name>storelocator/js/handlebars-1.0.0.min.js</name></action>
|
45 |
<block type="core/text" name="google.cdn.jquery">
|
46 |
<action method="setText">
|
47 |
-
<text
|
|
|
|
|
|
|
48 |
</text>
|
49 |
</action>
|
50 |
</block>
|
1 |
<?xml version="1.0"?>
|
2 |
+
<layout version="0.1.0">
|
|
|
3 |
<default>
|
4 |
<reference name="top.links">
|
5 |
<action method="addLink" ifconfig="storelocator/settings/active" translate="label title" module="storelocator"><label>Store Locator</label><url helper="storelocator/getStorelocatorUrl"/><title>Store Locator</title><prepare/><urlParams/><position>50</position></action>
|
6 |
</reference>
|
7 |
</default>
|
8 |
+
<storelocator_index_index>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
<reference name="root">
|
10 |
<action method="setTemplate">
|
11 |
<template>page/1column.phtml</template>
|
25 |
<action method="addItem"><type>skin_js</type><name>storelocator/js/handlebars-1.0.0.min.js</name></action>
|
26 |
<block type="core/text" name="google.cdn.jquery">
|
27 |
<action method="setText">
|
28 |
+
<text>
|
29 |
+
<![CDATA[<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
|
30 |
+
|
31 |
+
<script type="text/javascript">jQuery.noConflict();</script>]]>
|
32 |
</text>
|
33 |
</action>
|
34 |
</block>
|
app/design/frontend/base/default/template/storelocator/storelocator.phtml
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
$storeid = Mage::app()->getStore()->getId();
|
3 |
$lng = Mage::getStoreConfig('storelocator/settings/defaultlon', $storeid);
|
1 |
+
<?php echo $this->getJsandCss(); ?>
|
2 |
+
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
|
3 |
+
<script type="text/javascript">jQuery.noConflict();</script>
|
4 |
<?php
|
5 |
$storeid = Mage::app()->getStore()->getId();
|
6 |
$lng = Mage::getStoreConfig('storelocator/settings/defaultlon', $storeid);
|
package.xml
CHANGED
@@ -1,18 +1,20 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Sparx_Storelocator</name>
|
4 |
-
<version>0.1.
|
5 |
<stability>stable</stability>
|
6 |
<license>Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>With the help of store locator your customer can easily find out your stores, dealers and products.</summary>
|
10 |
<description>With the help of store locator your customer can easily find out your stores, dealers and products.</description>
|
11 |
-
<notes>
|
|
|
|
|
12 |
<authors><author><name>Alok</name><user>Alok</user><email>alok.kumar@sparxtechnologies.com</email></author><author><name>Ramesh</name><user>Ramesh</user><email>ramesh@sparxtechnologies.com</email></author></authors>
|
13 |
-
<date>2014-05-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Sparx"><dir><dir name="Storelocator"><dir name="Block"><dir name="Adminhtml"><file name="Region.php" hash="550d9365a637103d39320d5d4b1b63ca"/><dir name="Storelocator"><dir name="Edit"><file name="Form.php" hash="3c2e5708202cfae1992c0d61f40da235"/><dir name="Tab"><file name="Form.php" hash="d525c8fa9bd4e6137c44a9836ba4a618"/></dir><file name="Tabs.php" hash="6e207bb287097811b88e204b07adcc20"/></dir><file name="Edit.php" hash="1460b5f28c1e9629ae5f5a087829077a"/><file name="Grid.php" hash="5cdc26bd44bfcb742805a21ff34bd5bb"/></dir><file name="Storelocator.php" hash="f4a0bccfe6ccd8d22f90a82f2835f2fa"/></dir><file name="Storelocator.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.0.1</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Sparx_Storelocator</name>
|
4 |
+
<version>0.1.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>With the help of store locator your customer can easily find out your stores, dealers and products.</summary>
|
10 |
<description>With the help of store locator your customer can easily find out your stores, dealers and products.</description>
|
11 |
+
<notes>you can call store locator on your CMS page by this code
|
12 |
+

|
13 |
+
{{block type="storelocator/storelocator" name="storelocator" template="storelocator/storelocator.phtml" }} </notes>
|
14 |
<authors><author><name>Alok</name><user>Alok</user><email>alok.kumar@sparxtechnologies.com</email></author><author><name>Ramesh</name><user>Ramesh</user><email>ramesh@sparxtechnologies.com</email></author></authors>
|
15 |
+
<date>2014-05-27</date>
|
16 |
+
<time>07:19:50</time>
|
17 |
+
<contents><target name="magecommunity"><dir name="Sparx"><dir><dir name="Storelocator"><dir name="Block"><dir name="Adminhtml"><file name="Region.php" hash="550d9365a637103d39320d5d4b1b63ca"/><dir name="Storelocator"><dir name="Edit"><file name="Form.php" hash="3c2e5708202cfae1992c0d61f40da235"/><dir name="Tab"><file name="Form.php" hash="d525c8fa9bd4e6137c44a9836ba4a618"/></dir><file name="Tabs.php" hash="6e207bb287097811b88e204b07adcc20"/></dir><file name="Edit.php" hash="1460b5f28c1e9629ae5f5a087829077a"/><file name="Grid.php" hash="5cdc26bd44bfcb742805a21ff34bd5bb"/></dir><file name="Storelocator.php" hash="f4a0bccfe6ccd8d22f90a82f2835f2fa"/></dir><file name="Storelocator.php" hash="7e77614777f610831e7d6ecc5ef62ba4"/></dir><dir name="Helper"><file name="Data.php" hash="86fe7afa9a9a38e79a783e9063b129b4"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Storelocator"><file name="Collection.php" hash="2d6b9966a360ac0b7eeaf7cf05ffdc63"/></dir><file name="Storelocator.php" hash="dafe05d0aa6101a6d03c4c37d7929678"/></dir><file name="Status.php" hash="7d61b3131d0d0fb360710a9e3d6a8f38"/><file name="Storelocator.php" hash="bd9db3c2d5b23c388fa8d5d54591b428"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="StorelocatorController.php" hash="6575bf85d296b055a710fe6c3da397dd"/></dir><file name="IndexController.php" hash="895e294e0ca275e8e16e8c8291327e1f"/><file name="IndexController.php~" hash="0b3228fa8b2c2c37e1df927d67f299a9"/></dir><dir name="etc"><file name="adminhtml.xml" hash="09890d52d2cea540a576f91da0fcbded"/><file name="config.xml" hash="c2393b6828e3d2c45964708362b34ca9"/><file name="config.xml~" hash="c2393b6828e3d2c45964708362b34ca9"/><file name="system.xml" hash="2ea7e533b406a6c5a6556b3dd43af8fe"/></dir><dir name="sql"><dir name="storelocator_setup"><file name="mysql4-install-0.1.0.php" hash="67b368a2037a4fa5249844aed7e4a0a0"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="bf7758e4f9f38a90eb0e8566d7c4a325"/><file name="mysql4-upgrade-0.1.0-0.1.1.php~" hash="5e3923f18bd6db5c4a49e0cee4cbc350"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="fb575f471387a91889c352c65551e551"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Sparx_Storelocator.xml" hash="22bd627c46a723c3d15de483cc670cfd"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="storelocator"><file name="a.js~" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="css"><file name="map-style.css" hash="4b4ab7443d3f836737ffc05d3f494e27"/><file name="map-style.less" hash="f5db8b390b0b2dde9eddf8d5f76a827d"/><file name="map.css" hash="1dd18292a08e7ca6c750de6d2388c754"/><file name="mapbackup.css" hash="419f881e975781dce04792865094a9c7"/></dir><file name="jquery.storelocator.js~" hash="f04d3c879c93e95e3697781d1633c90a"/><dir name="js"><file name="handlebars-1.0.0.min.js" hash="b468988a5773757374f3e1188913e38a"/><file name="jquery-1.10.1.min.js" hash="33d85132f0154466fc017dd05111873d"/><file name="jquery.storelocator.js" hash="62e492542af80446b4713df5fd229c81"/><file name="jquery.storelocator_1.js" hash="e05d716636b2479a475b353a0453e0d2"/><file name="noConflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="storelocator"><file name="region.phtml" hash="915c3f3770c031b51d895428c5c68d78"/></dir></dir><dir name="layout"><file name="storelocator.xml" hash="3adedbd44805fa04c71f6482ef83e636"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="storelocator.xml" hash="684143632172c822ecff6a747ae512dd"/></dir><dir name="template"><dir name="storelocator"><file name="storedetail.phtml" hash="574932d48c81f4740181b67a1d632530"/><file name="storelocator.phtml" hash="606c30d019775664d3035d32d74cf2fc"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="storelocator"><dir><dir name="images"><dir name="100X100"><file name="1398758372_logo.jpg" hash="fa31e2c7c2a71ee75e75bf033e028e4b"/></dir><dir name="110X120"><file name="1398758372_logo.jpg" hash="be9679b60e6d67ea6227eb844cb5166c"/></dir><file name="1398758372_logo.jpg" hash="c4af7cabd68286e2a38cd87ec9c2cbbf"/><dir name="175X120"><file name="1398758372_logo.jpg" hash="cc911a117a5efb34ac19e269059ec999"/></dir><dir name="175X175"><file name="1398758372_logo.jpg" hash="d015014d7f420b5a07344b61228f1f2e"/></dir><dir name="250X120"><file name="1398758372_logo.jpg" hash="167e65861e9bfd349db773efebe1c778"/></dir><file name="logo.jpg" hash="c4af7cabd68286e2a38cd87ec9c2cbbf"/></dir></dir></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.0.1</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|