Version Notes
Fixed problems with installer not liking some tables in some installs
Download this release
Release Info
Developer | Matt Flamm |
Extension | Iglobal_Main |
Version | 1.0.6 |
Comparing to | |
See all releases |
Code changes from version 1.0.5 to 1.0.6
- app/code/community/Iglobal/Fee/Model/Fee.php +7 -3
- app/code/community/Iglobal/Stores/controllers/SuccessController.php +22 -3
- app/code/community/Iglobal/Stores/controllers/magento cart.phtml +0 -22
- app/code/community/Iglobal/Stores/etc/config.xml +3 -3
- app/code/community/Iglobal/Stores/sql/iglobal_stores_setup/mysql4-install-0.1.0.php +17 -2
- app/code/community/Iglobal/Stores/sql/iglobal_stores_setup/mysql4-upgrade-0.1.1-0.1.2.php +7 -1
- package.xml +6 -8
app/code/community/Iglobal/Fee/Model/Fee.php
CHANGED
@@ -5,9 +5,13 @@ class Iglobal_Fee_Model_Fee extends Varien_Object{
|
|
5 |
return 0;
|
6 |
}
|
7 |
public static function canApply($address){
|
8 |
-
//put here your business logic to check if fee should be applied or not
|
9 |
-
//if($address->getAddressType() == 'billing'){
|
10 |
return true;
|
11 |
-
//
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
}
|
13 |
}
|
5 |
return 0;
|
6 |
}
|
7 |
public static function canApply($address){
|
|
|
|
|
8 |
return true;
|
9 |
+
//put here your business logic to check if fee should be applied or not
|
10 |
+
$quote = $address->getQuote();
|
11 |
+
if($quote->getFeeAmount()){
|
12 |
+
return true;
|
13 |
+
} else {
|
14 |
+
return false;
|
15 |
+
}
|
16 |
}
|
17 |
}
|
app/code/community/Iglobal/Stores/controllers/SuccessController.php
CHANGED
@@ -8,24 +8,43 @@ class Iglobal_Stores_SuccessController extends Mage_Core_Controller_Front_Action
|
|
8 |
$_order = $this->getRequest()->getParam('orderId', null);
|
9 |
try
|
10 |
{
|
|
|
|
|
11 |
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
$quote = Mage::getSingleton('checkout/session')->getQuote()->setStoreId(Mage::app()->getStore()->getId());//if more than one store, then this should be set dynamically
|
15 |
$table = "sales_flat_order";
|
16 |
$tableName = Mage::getSingleton("core/resource")->getTableName($table);
|
17 |
$existsQuery = "SELECT `entity_id` FROM `" . $tableName. "` WHERE `ig_order_number` = '{$_order}'";
|
|
|
18 |
$orderExists = Mage::getSingleton('core/resource')->getConnection('core_read')->fetchRow($existsQuery);
|
19 |
-
|
|
|
20 |
if(!$_order || $orderExists) header('Location: /');
|
21 |
|
|
|
|
|
|
|
22 |
$rest = Mage::getModel('stores/rest_order');
|
23 |
$data = $rest->getOrder($_order);
|
24 |
|
25 |
|
26 |
$quote->setCustomerEmail($data['email']);
|
27 |
//set ddp
|
28 |
-
$quote->setFeeAmount($data['dutyTaxesTotal']);
|
29 |
|
30 |
$_name = explode(' ', $data['name'], 2);
|
31 |
if ($data['testOrder'] == "true") {
|
8 |
$_order = $this->getRequest()->getParam('orderId', null);
|
9 |
try
|
10 |
{
|
11 |
+
/*
|
12 |
+
Mage::log('in the try', null, 'iglobal.log');
|
13 |
|
14 |
+
//try and log the whole trace to see what is calling this
|
15 |
+
Mage::log(' ******* Entered the controller. Begin backtrace: *******', null, 'mattscustom.log');
|
16 |
+
foreach(debug_backtrace() as $key=>$info)
|
17 |
+
{
|
18 |
+
Mage::Log("#" . $key .
|
19 |
+
" Called " .
|
20 |
+
$info['function'] .
|
21 |
+
" in " .
|
22 |
+
$info['file'] .
|
23 |
+
" on line " .
|
24 |
+
$info['line'], null, 'mattscustom.log');
|
25 |
+
}
|
26 |
+
*/
|
27 |
|
28 |
$quote = Mage::getSingleton('checkout/session')->getQuote()->setStoreId(Mage::app()->getStore()->getId());//if more than one store, then this should be set dynamically
|
29 |
$table = "sales_flat_order";
|
30 |
$tableName = Mage::getSingleton("core/resource")->getTableName($table);
|
31 |
$existsQuery = "SELECT `entity_id` FROM `" . $tableName. "` WHERE `ig_order_number` = '{$_order}'";
|
32 |
+
//Mage::log('Exists Query: ' . $existsQuery, null, 'mattscustom.log');
|
33 |
$orderExists = Mage::getSingleton('core/resource')->getConnection('core_read')->fetchRow($existsQuery);
|
34 |
+
//Mage::log('Order Exists: ' . $orderExists, null, 'mattscustom.log');
|
35 |
+
|
36 |
if(!$_order || $orderExists) header('Location: /');
|
37 |
|
38 |
+
//log that we passed the location change
|
39 |
+
// Mage::log('**** We made it past the the redirect: $_order and $orderExist are true ****', null, 'mattscustom.log');
|
40 |
+
|
41 |
$rest = Mage::getModel('stores/rest_order');
|
42 |
$data = $rest->getOrder($_order);
|
43 |
|
44 |
|
45 |
$quote->setCustomerEmail($data['email']);
|
46 |
//set ddp
|
47 |
+
$quote->setFeeAmount($data['dutyTaxesTotal']); //turn this back on to get the fee stff working again
|
48 |
|
49 |
$_name = explode(' ', $data['name'], 2);
|
50 |
if ($data['testOrder'] == "true") {
|
app/code/community/Iglobal/Stores/controllers/magento cart.phtml
DELETED
@@ -1,22 +0,0 @@
|
|
1 |
-
<NotepadPlus>
|
2 |
-
<Session activeView="0">
|
3 |
-
<mainView activeIndex="14">
|
4 |
-
<File firstVisibleLine="63" xOffset="0" scrollWidth="1432" startPos="1816" endPos="1816" selMode="0" lang="PHP" encoding="-1" filename="C:\magentostack6\apps\magento\htdocs\app\design\frontend\base\default\template\iglobal\stores\cart.phtml" />
|
5 |
-
<File firstVisibleLine="0" xOffset="0" scrollWidth="956" startPos="0" endPos="0" selMode="0" lang="PHP" encoding="-1" filename="C:\Users\mattf_000\Desktop\cart2.phtml" />
|
6 |
-
<File firstVisibleLine="0" xOffset="6" scrollWidth="981" startPos="302" endPos="407" selMode="0" lang="PHP" encoding="-1" filename="C:\Users\mattf_000\Desktop\cart7.phtml" />
|
7 |
-
<File firstVisibleLine="0" xOffset="55" scrollWidth="956" startPos="302" endPos="302" selMode="0" lang="PHP" encoding="-1" filename="C:\Users\mattf_000\Desktop\cart4.phtml" />
|
8 |
-
<File firstVisibleLine="39" xOffset="0" scrollWidth="1482" startPos="2046" endPos="2046" selMode="0" lang="Javascript" encoding="-1" filename="C:\magentostack6\apps\magento\htdocs\js\iGlobal\igc.cs.magento_default_ice.js" />
|
9 |
-
<File firstVisibleLine="21" xOffset="0" scrollWidth="25095" startPos="4516" endPos="4516" selMode="0" lang="Javascript" encoding="-1" filename="C:\magentostack6\apps\magento\htdocs\js\iGlobal\ig_welcome_mat_default.js" />
|
10 |
-
<File firstVisibleLine="0" xOffset="0" scrollWidth="270" startPos="119" endPos="119" selMode="0" lang="XML" encoding="-1" filename="C:\magentostack6\apps\magento\htdocs\app\code\community\Iglobal\Stores\etc\config.xml" />
|
11 |
-
<File firstVisibleLine="0" xOffset="0" scrollWidth="180" startPos="0" endPos="0" selMode="0" lang="PHP" encoding="-1" filename="C:\Users\mattf_000\Downloads\extension\extension\app\design\frontend\base\default\template\zxyxz_store\cart.phtml" />
|
12 |
-
<File firstVisibleLine="6" xOffset="0" scrollWidth="556" startPos="1322" endPos="1262" selMode="0" lang="PHP" encoding="-1" filename="C:\Users\mattf_000\Downloads\extension\extension\app\code\community\Zxyxz\Store\Block\Cart.php" />
|
13 |
-
<File firstVisibleLine="112" xOffset="0" scrollWidth="209551" startPos="97767" endPos="97767" selMode="0" lang="Javascript" encoding="-1" filename="C:\nginx\html\igc.cs.shoolu.js" />
|
14 |
-
<File firstVisibleLine="41" xOffset="0" scrollWidth="1631" startPos="3491" endPos="1794" selMode="0" lang="Javascript" encoding="-1" filename="C:\nginx\html\igc.cs.gourmetnew.js" />
|
15 |
-
<File firstVisibleLine="0" xOffset="0" scrollWidth="979" startPos="0" endPos="0" selMode="0" lang="PHP" encoding="-1" filename="C:\magentostack6\apps\magento\htdocs\app\code\community\Iglobal\Stores\sql\iglobal_stores_setup\mysql4-install-0.1.0.php" />
|
16 |
-
<File firstVisibleLine="0" xOffset="0" scrollWidth="253" startPos="0" endPos="0" selMode="0" lang="PHP" encoding="-1" filename="C:\magentostack6\apps\magento\htdocs\app\code\community\Iglobal\Stores\sql\iglobal_stores_setup\mysql4-upgrade-0.1.0-0.1.1.php" />
|
17 |
-
<File firstVisibleLine="0" xOffset="0" scrollWidth="724" startPos="0" endPos="0" selMode="0" lang="PHP" encoding="-1" filename="C:\magentostack6\apps\magento\htdocs\app\code\community\Iglobal\Stores\sql\iglobal_stores_setup\mysql4-upgrade-0.1.1-0.1.2.php" />
|
18 |
-
<File firstVisibleLine="0" xOffset="0" scrollWidth="1225" startPos="0" endPos="0" selMode="0" lang="PHP" encoding="-1" filename="C:\magentostack6\apps\magento\htdocs\app\code\community\Iglobal\Stores\controllers\SuccessController.php" />
|
19 |
-
</mainView>
|
20 |
-
<subView activeIndex="0" />
|
21 |
-
</Session>
|
22 |
-
</NotepadPlus>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Iglobal/Stores/etc/config.xml
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
<config>
|
5 |
<modules>
|
6 |
<Iglobal_Stores>
|
7 |
-
<version>1.0.
|
8 |
<currencies>
|
9 |
<AED></AED>
|
10 |
<ARS>&#8371;</ARS>
|
@@ -228,7 +228,7 @@
|
|
228 |
</resources>
|
229 |
</global>
|
230 |
<frontend>
|
231 |
-
|
232 |
<iglobal>
|
233 |
<use>standard</use>
|
234 |
<args>
|
@@ -236,7 +236,7 @@
|
|
236 |
<frontName>iglobal</frontName>
|
237 |
</args>
|
238 |
</iglobal>
|
239 |
-
</routers>
|
240 |
<layout>
|
241 |
<updates>
|
242 |
<stores>
|
4 |
<config>
|
5 |
<modules>
|
6 |
<Iglobal_Stores>
|
7 |
+
<version>1.0.6</version>
|
8 |
<currencies>
|
9 |
<AED></AED>
|
10 |
<ARS>&#8371;</ARS>
|
228 |
</resources>
|
229 |
</global>
|
230 |
<frontend>
|
231 |
+
<!-- <routers>
|
232 |
<iglobal>
|
233 |
<use>standard</use>
|
234 |
<args>
|
236 |
<frontName>iglobal</frontName>
|
237 |
</args>
|
238 |
</iglobal>
|
239 |
+
</routers> -->
|
240 |
<layout>
|
241 |
<updates>
|
242 |
<stores>
|
app/code/community/Iglobal/Stores/sql/iglobal_stores_setup/mysql4-install-0.1.0.php
CHANGED
@@ -4,8 +4,23 @@ $installer = $this;
|
|
4 |
|
5 |
// This whole /sql setup idea is the most awesome way to make updates and new tables in the DB
|
6 |
$installer->startSetup();
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
$installer->createAttribute('iGlobal Length','ig_length', 'text');
|
10 |
$installer->createAttribute('iGlobal Width', 'ig_width', 'text');
|
11 |
$installer->createAttribute('iGlobal Height', 'ig_height', 'text');
|
4 |
|
5 |
// This whole /sql setup idea is the most awesome way to make updates and new tables in the DB
|
6 |
$installer->startSetup();
|
7 |
+
//$installer->run('ALTER TABLE `sales_flat_order` ADD `international_order` BOOLEAN NOT NULL DEFAULT 0');
|
8 |
+
|
9 |
+
$installer->getConnection()
|
10 |
+
->addColumn($installer->getTable('sales_flat_order'),
|
11 |
+
'international_order', "BOOLEAN NOT NULL DEFAULT 0"
|
12 |
+
|
13 |
+
);
|
14 |
+
$installer->getConnection()
|
15 |
+
->addColumn($installer->getTable('sales_flat_order'),
|
16 |
+
'ig_order_number', "VARCHAR( 15 ) NULL DEFAULT NULL , ADD INDEX ( `ig_order_number` )"
|
17 |
+
|
18 |
+
);
|
19 |
+
|
20 |
+
|
21 |
+
//$installer->run('ALTER TABLE `sales_flat_order` ADD `ig_order_number` VARCHAR( 15 ) NULL DEFAULT NULL , ADD INDEX ( `ig_order_number` )');
|
22 |
+
|
23 |
+
|
24 |
$installer->createAttribute('iGlobal Length','ig_length', 'text');
|
25 |
$installer->createAttribute('iGlobal Width', 'ig_width', 'text');
|
26 |
$installer->createAttribute('iGlobal Height', 'ig_height', 'text');
|
app/code/community/Iglobal/Stores/sql/iglobal_stores_setup/mysql4-upgrade-0.1.1-0.1.2.php
CHANGED
@@ -5,5 +5,11 @@ $installer = $this;
|
|
5 |
|
6 |
//add test order flag attribute to order table.
|
7 |
$installer->startSetup();
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
$installer->endSetup();
|
5 |
|
6 |
//add test order flag attribute to order table.
|
7 |
$installer->startSetup();
|
8 |
+
//$installer->run('ALTER TABLE `sales_flat_order` ADD `iglobal_test_order` BOOLEAN NOT NULL DEFAULT 0');
|
9 |
+
|
10 |
+
$installer->getConnection()
|
11 |
+
->addColumn($installer->getTable('sales_flat_order'),
|
12 |
+
'iglobal_test_order', "BOOLEAN NOT NULL DEFAULT 0"
|
13 |
+
);
|
14 |
+
|
15 |
$installer->endSetup();
|
package.xml
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Iglobal_Main</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>
|
10 |
<description>International eCommerce Done Right
|
11 |
Thanks for checking out the iGlobal Stores extension for Magento Community Edition! This extension gives you access to the many features of iGlobal Stores services. For more information on this extension and iGlobal's services, please visit http://www.iglobalstores.com/magento
|
12 |

|
@@ -55,13 +55,11 @@ Installation Instructions
|
|
55 |
<li><strong>iGlobal Dimension Units</strong> – Unit of measure for the iGlobal Dimensional attributes. (CM / IN)</li>
|
56 |
</ul>
|
57 |
</ol></description>
|
58 |
-
<notes
|
59 |
-
-some defaults have changed. A violation of the meaning of default
|
60 |
-
-a couple minor bug fixes</notes>
|
61 |
<authors><author><name>Matt Flamm</name><user>mattflamm</user><email>matt@iglobalstores.com</email></author><author><name>Judd Flamm</name><user>UnkUser1</user><email>judd@iglobalstores.com</email></author><author><name>Dustin Dwyer</name><user>UnkUser2</user><email>dustin@iglobalstores.com</email></author><author><name>Dave Meads</name><user>unkuser3</user><email>dave@iglobalstores.com</email></author></authors>
|
62 |
-
<date>2014-09-
|
63 |
-
<time>
|
64 |
-
<contents><target name="magecommunity"><dir name="Iglobal"><dir name="
|
65 |
<compatible/>
|
66 |
<dependencies><required><php><min>5.0.0</min><max>7.0.0</max></php></required></dependencies>
|
67 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Iglobal_Main</name>
|
4 |
+
<version>1.0.6</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>a test package to be used in debugging.</summary>
|
10 |
<description>International eCommerce Done Right
|
11 |
Thanks for checking out the iGlobal Stores extension for Magento Community Edition! This extension gives you access to the many features of iGlobal Stores services. For more information on this extension and iGlobal's services, please visit http://www.iglobalstores.com/magento
|
12 |

|
55 |
<li><strong>iGlobal Dimension Units</strong> – Unit of measure for the iGlobal Dimensional attributes. (CM / IN)</li>
|
56 |
</ul>
|
57 |
</ol></description>
|
58 |
+
<notes>Fixed problems with installer not liking some tables in some installs</notes>
|
|
|
|
|
59 |
<authors><author><name>Matt Flamm</name><user>mattflamm</user><email>matt@iglobalstores.com</email></author><author><name>Judd Flamm</name><user>UnkUser1</user><email>judd@iglobalstores.com</email></author><author><name>Dustin Dwyer</name><user>UnkUser2</user><email>dustin@iglobalstores.com</email></author><author><name>Dave Meads</name><user>unkuser3</user><email>dave@iglobalstores.com</email></author></authors>
|
60 |
+
<date>2014-09-29</date>
|
61 |
+
<time>14:48:13</time>
|
62 |
+
<contents><target name="magecommunity"><dir name="Iglobal"><dir name="Ship"><dir name="Block"><file name="Ship.php" hash="a802b4d42e72997ec4ab466dec75b743"/></dir><dir name="Helper"><file name="Data.php" hash="fe9f074c1cb74260fa134efa94eb67c9"/></dir><dir name="Model"><dir name="Carrier"><file name="Excellence.php" hash="1cf0b2e1716d3f726f4e974f02267b53"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="3355a75caf30f4ff96499da3d8a4102a"/></dir><dir name="etc"><file name="config.xml" hash="adecbc76332ffb4b0f8918d3166c655c"/><file name="system.xml" hash="fea6b2ed9b7fdf5748cb57e53fe1301b"/></dir></dir><dir name="Stores"><dir name="Block"><file name="Ajax.php" hash="7b71e2bc9b801138f77f5927e7a6f6ba"/><file name="Cart.php" hash="2fd47fa1ca047bbc75383c2e35dd4bf2"/><file name="Includes.php" hash="7c36803ae1a6193f7805d7ae5bef17e6"/></dir><dir name="Helper"><file name="Configoptions.php" hash="b129e55b21f845a20d6e7fdb3b532be3"/><file name="Data.php" hash="2d77637b08ac8e7dcb717d8e1571739a"/></dir><dir name="Model"><file name="Configoptions.php" hash="6da281d601b7a6ce98ebc81b398d6e54"/><file name="Observer.php" hash="24ba19336cd0fb51700069ae3d80e471"/><dir name="Payment"><file name="Iglobal.php" hash="9ac8f8d81b8f8d547831ad6db8a1c7fc"/><file name="Iglobalcreditcard.php" hash="f2f5cf4507a128fadc95071951ca2a41"/><file name="Iglobalpaypal.php" hash="3a566289db82b177ce6b52ce205728f6"/></dir><dir name="Resource"><file name="Setup.php" hash="6b05cac95a1d36deeb7e9c9bd439ad8c"/></dir><dir name="Rest"><file name="Order.php" hash="916a67634abdf48666119854a1628ac3"/></dir><dir name="Service"><file name="Quote.php" hash="bae0e5a710b9e3aa1427bb78a08fbfd8"/></dir></dir><dir name="controllers"><file name="AjaxController.php" hash="3169062e850efd55749ae8033676bf2d"/><file name="SuccessController.php" hash="ad7d23cb1845f6338c70df101aed5a78"/><file name="TestController.php" hash="16d3154f6762859648abe2167bd4c4f5"/><file name="UpdateShippingStatusController.php" hash="77534f8cbc68f23ab3377ff1427b9300"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a94aa66e4f3643fcc49fb60650fef416"/><file name="config.xml" hash="035d1c3a5bde65e7eebae378e0a6537c"/><file name="system.xml" hash="40420c6652da8b38d181fdf57ab15720"/></dir><dir name="sql"><dir name="iglobal_stores_setup"><file name="mysql4-install-0.1.0.php" hash="99054f45310bf45efce6b168a8373655"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="1e8d0cc9906c303b99042290636faef9"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="df1ecb64d74827e729df76a2d2ed2c8a"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="1e8d0cc9906c303b99042290636faef9"/><file name="mysql4-upgrade-0.1.3-1.0.0.php" hash="ef0079b0f3b1c09b7417ff86df00ad9e"/></dir></dir></dir><dir name="Fee"><dir name="Block"><dir name="Sales"><dir name="Order"><file name="Total.php" hash="0e9e1537fd6cedc9a2b4a3efdf3f769d"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="406a814f1216d736e8661a32c833a15e"/></dir><dir name="Model"><file name="Fee.php" hash="5a18c1da4f5f091d63051872a9dc0135"/><file name="Observer.php" hash="a9ec09a49108625f592f8ef00bcba842"/><dir name="Sales"><dir name="Order"><dir name="Total"><dir name="Creditmemo"><file name="Fee.php" hash="048c8a97de6d884d3b95e0345c1cb75a"/></dir><dir name="Invoice"><file name="Fee.php" hash="fc98218c9a421b95af9f5f0ca062e1d8"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Fee.php" hash="bc925a41535068fb0a94c57183dd2027"/></dir></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="4cf60a3913d56196b169dd2dffa85e12"/></dir><dir name="sql"><dir name="fee_setup"><file name="mysql4-install-0.1.0.php" hash="8327866f66c8bff7fcbb0305385a6f93"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Iglobal_Ship.xml" hash="6d40f1c84e29bb7d8b70eadd77a03917"/><file name="Iglobal_Stores.xml" hash="9d9c621c78a98152bf83747eeecdaf99"/><file name="Iglobal_Fee.xml" hash="205714b75c3b417343a6b25ecedf35c4"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="iglobal.xml" hash="6df6f5f0aceab891d0cd13061a3b5e55"/><file name="fee.xml" hash="96955d111e2a9014d5dc3d18201ddddf"/></dir><dir name="template"><dir name="iglobal"><dir name="sales"><dir name="order"><dir name="view"><file name="info.phtml" hash="06280040dd9521efcd36c12779648108"/></dir></dir></dir></dir><dir name="fee"><dir name="sales"><dir name="order"><file name="refunded.phtml" hash="f4239d313366d75907a34b3342b35eb1"/><file name="total.phtml" hash="bbb080fb20415086d72719c1f1f613d4"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="iglobal"><dir name="checkout"><dir name="cart"><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="0fc6cc809c88704da74a915cf7e20918"/></dir></dir></dir></dir><dir name="stores"><file name="cart.phtml" hash="5d2db597e5dad80541c1caa5feab1af0"/><file name="igcincludes.phtml" hash="c8e7469a99a83a7ad7a884fa96899abc"/></dir></dir></dir><dir name="layout"><file name="iglobal.xml" hash="d522ac5d3cabf448736c0b593dd7536e"/><file name="fee.xml" hash="97d67fc83755f625dfe305748fca65b1"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="iGlobal"><file name="ig_welcome_mat_default.css" hash="52ddb2f596572313d7525de9b53adecb"/><file name="ig_welcome_mat_default.js" hash="6d8567ed60a1464e738eb018e77e7874"/><file name="igc.cs.magento_default_ice.js" hash="89898d6eb28c8636fb93f6dc5d9d0230"/><file name="igc.cs.matts_test_ice.js" hash="77971613fcf5b7addab808762ad8a421"/><dir name="jquery"><file name="jquery.js" hash="73a130a5693ab0a806c6d2acc8251006"/><file name="jquery.noconflict.js" hash="09bfdd3b964eb2b17b5d6caa1d20a607"/></dir></dir></dir></target></contents>
|
63 |
<compatible/>
|
64 |
<dependencies><required><php><min>5.0.0</min><max>7.0.0</max></php></required></dependencies>
|
65 |
</package>
|