Futurenext_Zakeke - Version 1.0.0.7

Version Notes

Bug fixing release

Download this release

Release Info

Developer Futurenext
Extension Futurenext_Zakeke
Version 1.0.0.7
Comparing to
See all releases


Code changes from version 1.0.0.6 to 1.0.0.7

app/code/community/Futurenext/Zakeke/etc/config.xml CHANGED
@@ -12,7 +12,7 @@
12
  <config>
13
  <modules>
14
  <Futurenext_Zakeke>
15
- <version>1.0.0.6</version>
16
  </Futurenext_Zakeke>
17
  </modules>
18
 
12
  <config>
13
  <modules>
14
  <Futurenext_Zakeke>
15
+ <version>1.0.0.7</version>
16
  </Futurenext_Zakeke>
17
  </modules>
18
 
app/design/adminhtml/default/default/template/zakeke/modulechecker.phtml CHANGED
@@ -1,64 +1,63 @@
1
- <?php
2
-
3
- /** @var Futurenext_Zakeke_Block_ModuleChecker $this */
4
-
5
- $moduleList = $this->getModuleList();
6
- $isZakekeReachable = $this->getIsZakekeReachable();
7
- $isModuleCheckerValid = count($moduleList) == 0;
8
- # $isModuleCheckerValid = true;
9
-
10
- $isReady = $isZakekeReachable && $isModuleCheckerValid;
11
-
12
- /** @var Mage_Adminhtml_Helper_Data $helper */
13
- $helper = Mage::helper('adminhtml');
14
- ?>
15
- <div class="middle" id="anchor-content" xmlns="http://www.w3.org/1999/html">
16
- <div id="page:main-container">
17
- <div class="content-header">
18
- <h3><?php echo $helper->__('Readiness Check') ?></h3>
19
- </div>
20
- <div id="zakeke-summary"
21
- class="zakeke-checker <?php echo $isReady ? 'zakeke-valid' : 'zakeke-not-valid' ?>">
22
- <span>
23
- <?php if ($isReady): ?>
24
- <strong><?php echo $helper->__('Compatible!') ?></strong> <?php echo $helper->__('You Magento store is ready for Zakeke.') ?>
25
- <?php else: ?>
26
- <strong><?php echo $helper->__('Error!') ?></strong> <?php echo $helper->__('You need to resolve these issues to use Zakeke.') ?>
27
- <?php endif; ?>
28
- </span>
29
- </div>
30
-
31
- <div id="zakeke-reachable-checker"
32
- class="zakeke-checker <?php echo $isZakekeReachable ? 'zakeke-valid' : 'zakeke-not-valid' ?>">
33
- <h3><?php echo $helper->__('Connection Check') ?></h3>
34
- <div>
35
- <?php if ($isZakekeReachable): ?>
36
- <p><?php echo $helper->__('Zakeke is reachable.') ?></p>
37
- <?php else: ?>
38
- <div class="zakeke-problem-description">
39
- <p><?php echo $helper->__('Zakeke is not reachable. Contact us and we will investigate the problem.') ?></p>
40
- </div>
41
- <?php endif; ?>
42
- </div>
43
- </div>
44
-
45
- <div id="zakeke-module-checker"
46
- class="zakeke-checker <?php echo $isModuleCheckerValid ? 'zakeke-valid' : 'zakeke-not-valid' ?>">
47
- <h3><?php echo $helper->__('Modules Check') ?></h3>
48
- <div>
49
- <?php if ($isModuleCheckerValid): ?>
50
- <p><?php echo $helper->__('Your modules are compatible.') ?></p>
51
- <?php else: ?>
52
- <div class="zakeke-problem-description">
53
- <p><?php echo $helper->__('%s modules result not compatible', count($moduleList)) ?></p>
54
- </div>
55
- <ul>
56
- <?php foreach($moduleList as $index => $module): ?>
57
- <li><?php echo sprintf('%s (%s) - %s', $module->getName(), $module->getModuleVersion(), $module->getHowToFix()) ?></span></li>
58
- <?php endforeach; ?>
59
- </ul>
60
- <?php endif; ?>
61
- </div>
62
- </div>
63
- </div>
64
  </div>
1
+ <?php
2
+
3
+ /** @var Futurenext_Zakeke_Block_ModuleChecker $this */
4
+
5
+ $moduleList = $this->getModuleList();
6
+ $isZakekeReachable = $this->getIsZakekeReachable();
7
+ $isModuleCheckerValid = $moduleList === false || count($moduleList) == 0;
8
+
9
+ $isReady = $isZakekeReachable && $isModuleCheckerValid;
10
+
11
+ /** @var Mage_Adminhtml_Helper_Data $helper */
12
+ $helper = Mage::helper('adminhtml');
13
+ ?>
14
+ <div class="middle" id="anchor-content" xmlns="http://www.w3.org/1999/html">
15
+ <div id="page:main-container">
16
+ <div class="content-header">
17
+ <h3><?php echo $helper->__('Readiness Check') ?></h3>
18
+ </div>
19
+ <div id="zakeke-summary"
20
+ class="zakeke-checker <?php echo $isReady ? 'zakeke-valid' : 'zakeke-not-valid' ?>">
21
+ <span>
22
+ <?php if ($isReady): ?>
23
+ <strong><?php echo $helper->__('Compatible!') ?></strong> <?php echo $helper->__('You Magento store is ready for Zakeke.') ?>
24
+ <?php else: ?>
25
+ <strong><?php echo $helper->__('Error!') ?></strong> <?php echo $helper->__('You need to resolve these issues to use Zakeke.') ?>
26
+ <?php endif; ?>
27
+ </span>
28
+ </div>
29
+
30
+ <div id="zakeke-reachable-checker"
31
+ class="zakeke-checker <?php echo $isZakekeReachable ? 'zakeke-valid' : 'zakeke-not-valid' ?>">
32
+ <h3><?php echo $helper->__('Connection Check') ?></h3>
33
+ <div>
34
+ <?php if ($isZakekeReachable): ?>
35
+ <p><?php echo $helper->__('Zakeke is reachable.') ?></p>
36
+ <?php else: ?>
37
+ <div class="zakeke-problem-description">
38
+ <p><?php echo $helper->__('Zakeke is not reachable. Contact us and we will investigate the problem.') ?></p>
39
+ </div>
40
+ <?php endif; ?>
41
+ </div>
42
+ </div>
43
+
44
+ <div id="zakeke-module-checker"
45
+ class="zakeke-checker <?php echo $isModuleCheckerValid ? 'zakeke-valid' : 'zakeke-not-valid' ?>">
46
+ <h3><?php echo $helper->__('Modules Check') ?></h3>
47
+ <div>
48
+ <?php if ($isModuleCheckerValid): ?>
49
+ <p><?php echo $helper->__('Your modules are compatible.') ?></p>
50
+ <?php else: ?>
51
+ <div class="zakeke-problem-description">
52
+ <p><?php echo $helper->__('%s modules result not compatible', count($moduleList)) ?></p>
53
+ </div>
54
+ <ul>
55
+ <?php foreach($moduleList as $index => $module): ?>
56
+ <li><?php echo sprintf('%s (%s) - %s', $module->getName(), $module->getModuleVersion(), $module->getHowToFix()) ?></span></li>
57
+ <?php endforeach; ?>
58
+ </ul>
59
+ <?php endif; ?>
60
+ </div>
61
+ </div>
62
+ </div>
 
63
  </div>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Futurenext_Zakeke</name>
4
- <version>1.0.0.6</version>
5
  <stability>stable</stability>
6
  <license uri="https://www.zakeke.com/Contracts/GeneralConditions">Zakeke license</license>
7
  <channel>community</channel>
@@ -11,8 +11,8 @@
11
  <notes>Bug fixing release</notes>
12
  <authors><author><name>Futurenext</name><user>futurenext</user><email>info@zakeke.com</email></author></authors>
13
  <date>2017-03-31</date>
14
- <time>11:23:03</time>
15
- <contents><target name="magecommunity"><dir name="Futurenext"><dir name="Zakeke"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Downloadable.php" hash="2d8fb733bc0ba91d9f6663f36489fbd3"/></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Downloadable"><file name="Links.php" hash="346b6dfd7dd8607b67c280350ac9975e"/><file name="Samples.php" hash="93c481ebd2ef25927bd836829d943fae"/></dir><file name="Downloadable.php" hash="f8b9ba9f21da82fdc42aca57b2342440"/></dir></dir></dir></dir><dir name="Sales"><dir name="Items"><dir name="Column"><dir name="Zakeke"><file name="Name.php" hash="663d3f51347773fb7db4737641171ffd"/></dir></dir></dir></dir></dir><file name="CartItemRenderer.php" hash="24dd771900f341285fcb6625648bdafb"/><file name="CheckoutItemRenderer.php" hash="efc02e5ff750861fe849c83e7df24da1"/><dir name="Customize"><file name="Add.php" hash="6d206e080ed91ed1ffbdd7528d89be2f"/><file name="Configure.php" hash="e815ed877af5727bd20289429122107b"/></dir><file name="Customize.php" hash="dcae150aafaa72013f83c0e51746f56d"/><file name="CustomizeButton.php" hash="0289e8754309ed5ba622a4e0ce643d25"/><file name="ModuleChecker.php" hash="8df2615bc87c4e656584ee80a51a9b31"/><dir name="Sales"><dir name="Order"><dir name="Email"><dir name="Items"><dir name="Order"><file name="Default.php" hash="f053f33c788884284d983f9340b8a104"/></dir></dir></dir></dir></dir><file name="SalesItemRenderer.php" hash="e5033cf0e41f399d27d8a4f6e9cad82f"/><file name="View.php" hash="f4f780e2c0e48bc0280bc6980d420da2"/></dir><dir name="Helper"><file name="Data.php" hash="45761a858ac8700b299d8a30a04c1d74"/><file name="ZakekeApi.php" hash="33570062b20d80a2222b3bfa6e0766a9"/></dir><dir name="Model"><dir name="Api2"><dir name="Colors"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="0b1ad3d9656fd5b729d1f7a626359e19"/></dir></dir></dir><file name="Colors.php" hash="f9f004c13ef5357bb3d5e798208e7902"/><dir name="ProductAttribute"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="40a6a5def798a5d0e8bcee1ac8c8a4d8"/></dir></dir></dir><file name="ProductAttribute.php" hash="97ea0f12646d9f1f1ab6916ed41f04dc"/><dir name="ProductOptions"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="6c6dd2079f58a654b60c465cc1fbc357"/></dir></dir></dir><file name="ProductOptions.php" hash="5e1234a158723dc5a8e2c3ccf6e152cf"/><dir name="Settings"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="e982e900acb2a4ac267cdda95c87cd35"/></dir></dir></dir><file name="Settings.php" hash="2f7fa711c00e75d3c4afabb007145c49"/><dir name="ZakekeEnabled"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="b107fafe0fa69827bebadfd66c6274d9"/></dir></dir></dir><file name="ZakekeEnabled.php" hash="0f5c210fa296b30283aa41f500c3e3b9"/></dir><file name="ModuleList.php" hash="929479d45eb4252daaff6e4a40733b09"/><file name="Observer.php" hash="1f57441680e8e27086079004574c69f9"/><dir name="Resource"><file name="Setup.php" hash="42a7681d56fcd5ad06f75a223ef420f1"/><dir name="ZakekeEnabled"><file name="Collection.php" hash="fdadf3c788c4b5e175e4a20501116027"/></dir><file name="ZakekeEnabled.php" hash="f32fb4b25f1f78287a38c3bd170bdbaa"/></dir><file name="ZakekeEnabled.php" hash="9b31e4606dcf8622092f638ca9f3920c"/></dir><dir name="controllers"><file name="CustomizeController.php" hash="c11203f7292404560d0d23a9ebf6d85a"/><dir name="Zakeke"><file name="ModuleCheckerController.php" hash="b92d1f5b155479a85f358f1356ccdd29"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="22cdf40e6e83327b58f9e97fa17e8f68"/><file name="api2.xml" hash="9af2352582ae62a261d07f58e64d5e77"/><file name="config.xml" hash="1ded6ef48d601289277eaf55ae55b624"/><file name="system.xml" hash="be811a77878dc17994b5a641ddb2c838"/></dir><dir name="sql"><dir name="zakeke_setup"><file name="install-1.0.0.0.php" hash="64a3954b20b3142886446ac432a04b21"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Futurenext_Zakeke.xml" hash="f309795ee4b758943868cb1f7459fb9c"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><dir name="zakeke"><file name="preview.js" hash="a22a32209982d2dda7561cff723b49bb"/></dir></dir><dir name="css"><dir name="zakeke"><file name="productview.css" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="zakeke"><file name="modulechecker.css" hash="e7fd6efc953f7e2aae234607a0a379a8"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="zakeke.xml" hash="d296777d398f6af473adfb8a15477b47"/></dir><dir name="template"><dir name="zakeke"><file name="modulechecker.phtml" hash="7855639fdc8b9511798a30adb60d33d3"/><dir name="sales"><dir name="items"><dir name="column"><dir name="zakeke"><file name="name.phtml" hash="e441a8f732c2d378df0deb88b7f7f5e7"/></dir></dir></dir><dir name="order"><dir name="creditmemo"><dir name="create"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="6294158a08ad56639c3a57a4d88c2f81"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="4421194ecc884d934f099a256062cfcb"/></dir></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="74c7b3f6230f25b48dc3eb762eed7b2f"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="01cd2347f60718c6238a7e19274d83bb"/></dir></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="867a37a7072be0cba7dc9f7c03cec0d4"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="zakeke.xml" hash="d5e2ce6707c4e307857469097caeebda"/></dir><dir name="template"><dir name="zakeke"><dir name="cart"><dir name="item"><file name="default.phtml" hash="bfb6e4a50c69ccfdfe66ad8c8711afdd"/></dir><file name="minicart.phtml" hash="1e7398e848e024bbeae11ed1550de3c8"/></dir><dir name="checkout"><dir name="onepage"><dir name="review"><file name="item.phtml" hash="2255b8b6fd8d9df3af96fc3c6c06b320"/></dir></dir></dir><dir name="customization"><file name="add.phtml" hash="c647328e435fbe6dbe61e325e7a90f89"/></dir><file name="customize.phtml" hash="5b16967774ef9109760873480f2f23c2"/><file name="customizeButton.phtml" hash="78c81b67f8bb3e63c27d36054edaeb35"/><dir name="sales"><dir name="order"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="9590846363b6dc7ca0cd7eaaa0c86949"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="zakeke"><file name="customize.js" hash="efab393e72ffeedae64002dc1b8c002c"/><file name="jquery.js" hash="105112a8a757f683234e01dec3799022"/><file name="preview.js" hash="a22a32209982d2dda7561cff723b49bb"/></dir></dir></target><target name="magelocale"><dir name="it_IT"><file name="Futurenext_Zakeke.csv" hash="0a8b269e780aa6b01790451945e7e25a"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><extension><name>curl</name><min/><max/></extension></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Futurenext_Zakeke</name>
4
+ <version>1.0.0.7</version>
5
  <stability>stable</stability>
6
  <license uri="https://www.zakeke.com/Contracts/GeneralConditions">Zakeke license</license>
7
  <channel>community</channel>
11
  <notes>Bug fixing release</notes>
12
  <authors><author><name>Futurenext</name><user>futurenext</user><email>info@zakeke.com</email></author></authors>
13
  <date>2017-03-31</date>
14
+ <time>12:07:29</time>
15
+ <contents><target name="magecommunity"><dir name="Futurenext"><dir name="Zakeke"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Downloadable.php" hash="2d8fb733bc0ba91d9f6663f36489fbd3"/></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Downloadable"><file name="Links.php" hash="346b6dfd7dd8607b67c280350ac9975e"/><file name="Samples.php" hash="93c481ebd2ef25927bd836829d943fae"/></dir><file name="Downloadable.php" hash="f8b9ba9f21da82fdc42aca57b2342440"/></dir></dir></dir></dir><dir name="Sales"><dir name="Items"><dir name="Column"><dir name="Zakeke"><file name="Name.php" hash="663d3f51347773fb7db4737641171ffd"/></dir></dir></dir></dir></dir><file name="CartItemRenderer.php" hash="24dd771900f341285fcb6625648bdafb"/><file name="CheckoutItemRenderer.php" hash="efc02e5ff750861fe849c83e7df24da1"/><dir name="Customize"><file name="Add.php" hash="6d206e080ed91ed1ffbdd7528d89be2f"/><file name="Configure.php" hash="e815ed877af5727bd20289429122107b"/></dir><file name="Customize.php" hash="dcae150aafaa72013f83c0e51746f56d"/><file name="CustomizeButton.php" hash="0289e8754309ed5ba622a4e0ce643d25"/><file name="ModuleChecker.php" hash="8df2615bc87c4e656584ee80a51a9b31"/><dir name="Sales"><dir name="Order"><dir name="Email"><dir name="Items"><dir name="Order"><file name="Default.php" hash="f053f33c788884284d983f9340b8a104"/></dir></dir></dir></dir></dir><file name="SalesItemRenderer.php" hash="e5033cf0e41f399d27d8a4f6e9cad82f"/><file name="View.php" hash="f4f780e2c0e48bc0280bc6980d420da2"/></dir><dir name="Helper"><file name="Data.php" hash="45761a858ac8700b299d8a30a04c1d74"/><file name="ZakekeApi.php" hash="33570062b20d80a2222b3bfa6e0766a9"/></dir><dir name="Model"><dir name="Api2"><dir name="Colors"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="0b1ad3d9656fd5b729d1f7a626359e19"/></dir></dir></dir><file name="Colors.php" hash="f9f004c13ef5357bb3d5e798208e7902"/><dir name="ProductAttribute"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="40a6a5def798a5d0e8bcee1ac8c8a4d8"/></dir></dir></dir><file name="ProductAttribute.php" hash="97ea0f12646d9f1f1ab6916ed41f04dc"/><dir name="ProductOptions"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="6c6dd2079f58a654b60c465cc1fbc357"/></dir></dir></dir><file name="ProductOptions.php" hash="5e1234a158723dc5a8e2c3ccf6e152cf"/><dir name="Settings"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="e982e900acb2a4ac267cdda95c87cd35"/></dir></dir></dir><file name="Settings.php" hash="2f7fa711c00e75d3c4afabb007145c49"/><dir name="ZakekeEnabled"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="b107fafe0fa69827bebadfd66c6274d9"/></dir></dir></dir><file name="ZakekeEnabled.php" hash="0f5c210fa296b30283aa41f500c3e3b9"/></dir><file name="ModuleList.php" hash="929479d45eb4252daaff6e4a40733b09"/><file name="Observer.php" hash="1f57441680e8e27086079004574c69f9"/><dir name="Resource"><file name="Setup.php" hash="42a7681d56fcd5ad06f75a223ef420f1"/><dir name="ZakekeEnabled"><file name="Collection.php" hash="fdadf3c788c4b5e175e4a20501116027"/></dir><file name="ZakekeEnabled.php" hash="f32fb4b25f1f78287a38c3bd170bdbaa"/></dir><file name="ZakekeEnabled.php" hash="9b31e4606dcf8622092f638ca9f3920c"/></dir><dir name="controllers"><file name="CustomizeController.php" hash="c11203f7292404560d0d23a9ebf6d85a"/><dir name="Zakeke"><file name="ModuleCheckerController.php" hash="b92d1f5b155479a85f358f1356ccdd29"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="22cdf40e6e83327b58f9e97fa17e8f68"/><file name="api2.xml" hash="9af2352582ae62a261d07f58e64d5e77"/><file name="config.xml" hash="fc882d4af053db6af33cfb56973b1c7e"/><file name="system.xml" hash="be811a77878dc17994b5a641ddb2c838"/></dir><dir name="sql"><dir name="zakeke_setup"><file name="install-1.0.0.0.php" hash="64a3954b20b3142886446ac432a04b21"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Futurenext_Zakeke.xml" hash="f309795ee4b758943868cb1f7459fb9c"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><dir name="zakeke"><file name="preview.js" hash="a22a32209982d2dda7561cff723b49bb"/></dir></dir><dir name="css"><dir name="zakeke"><file name="productview.css" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="zakeke"><file name="modulechecker.css" hash="e7fd6efc953f7e2aae234607a0a379a8"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="zakeke.xml" hash="d296777d398f6af473adfb8a15477b47"/></dir><dir name="template"><dir name="zakeke"><file name="modulechecker.phtml" hash="b3101729cc5030c645770af6a814cd26"/><dir name="sales"><dir name="items"><dir name="column"><dir name="zakeke"><file name="name.phtml" hash="e441a8f732c2d378df0deb88b7f7f5e7"/></dir></dir></dir><dir name="order"><dir name="creditmemo"><dir name="create"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="6294158a08ad56639c3a57a4d88c2f81"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="4421194ecc884d934f099a256062cfcb"/></dir></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="74c7b3f6230f25b48dc3eb762eed7b2f"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="01cd2347f60718c6238a7e19274d83bb"/></dir></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="867a37a7072be0cba7dc9f7c03cec0d4"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="zakeke.xml" hash="d5e2ce6707c4e307857469097caeebda"/></dir><dir name="template"><dir name="zakeke"><dir name="cart"><dir name="item"><file name="default.phtml" hash="bfb6e4a50c69ccfdfe66ad8c8711afdd"/></dir><file name="minicart.phtml" hash="1e7398e848e024bbeae11ed1550de3c8"/></dir><dir name="checkout"><dir name="onepage"><dir name="review"><file name="item.phtml" hash="2255b8b6fd8d9df3af96fc3c6c06b320"/></dir></dir></dir><dir name="customization"><file name="add.phtml" hash="c647328e435fbe6dbe61e325e7a90f89"/></dir><file name="customize.phtml" hash="5b16967774ef9109760873480f2f23c2"/><file name="customizeButton.phtml" hash="78c81b67f8bb3e63c27d36054edaeb35"/><dir name="sales"><dir name="order"><dir name="items"><dir name="renderer"><file name="zakeke.phtml" hash="9590846363b6dc7ca0cd7eaaa0c86949"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="zakeke"><file name="customize.js" hash="efab393e72ffeedae64002dc1b8c002c"/><file name="jquery.js" hash="105112a8a757f683234e01dec3799022"/><file name="preview.js" hash="a22a32209982d2dda7561cff723b49bb"/></dir></dir></target><target name="magelocale"><dir name="it_IT"><file name="Futurenext_Zakeke.csv" hash="0a8b269e780aa6b01790451945e7e25a"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><extension><name>curl</name><min/><max/></extension></required></dependencies>
18
  </package>