Intelligent_Reach - Version 1.0.16

Version Notes

Stable release. Compatible with older versions. Feed creation has been optimized to handle larger loads. The option to choose the store is now available. Can retrieve associated products for grouped types.Bug fixes.Has support for PHP V5.2

Download this release

Release Info

Developer Magento Core Team
Extension Intelligent_Reach
Version 1.0.16
Comparing to
See all releases


Code changes from version 1.0.15 to 1.0.16

Files changed (31) hide show
  1. app/code/local/IntelligentReach/AmazonPayment/Helper/Data.php +5 -0
  2. app/code/local/IntelligentReach/AmazonPayment/Model/Pay.php +21 -0
  3. app/code/local/IntelligentReach/AmazonPayment/etc/config.xml +57 -0
  4. app/code/local/IntelligentReach/AmazonPayment/etc/system.xml +44 -0
  5. app/code/local/IntelligentReach/EbayPayment/Helper/Data.php +5 -0
  6. app/code/local/IntelligentReach/EbayPayment/Model/Pay.php +21 -0
  7. app/code/local/IntelligentReach/EbayPayment/etc/config.xml +75 -0
  8. app/code/local/IntelligentReach/EbayPayment/etc/system.xml +55 -0
  9. app/code/local/IntelligentReach/Integration/etc/config.xml +1 -1
  10. app/design/frontend/base/default/layout/intelligentreach_integration.xml +5 -5
  11. app/design/frontend/base/default/template/intelligentreach_integration/basket/intelligentreach_integration.phtml +1 -1
  12. app/design/frontend/base/default/template/intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml +1 -1
  13. app/design/frontend/base/default/template/intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml +1 -1
  14. app/design/frontend/base/default/template/intelligentreach_integration/intelligentreach_integration.phtml +1 -1
  15. app/design/frontend/base/default/template/intelligentreach_integration/product/intelligentreach_integration.phtml +1 -1
  16. app/design/frontend/default/default/layout/intelligentreach_integration.xml +5 -5
  17. app/design/frontend/default/default/template/intelligentreach_integration/basket/intelligentreach_integration.phtml +1 -1
  18. app/design/frontend/default/default/template/intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml +1 -1
  19. app/design/frontend/default/default/template/intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml +1 -1
  20. app/design/frontend/default/default/template/intelligentreach_integration/intelligentreach_integration.phtml +1 -1
  21. app/design/frontend/default/default/template/intelligentreach_integration/product/intelligentreach_integration.phtml +1 -1
  22. app/design/frontend/enterprise/default/layout/intelligentreach_integration.xml +5 -5
  23. app/design/frontend/enterprise/default/template/intelligentreach_integration/basket/intelligentreach_integration.phtml +1 -1
  24. app/design/frontend/enterprise/default/template/intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml +1 -1
  25. app/design/frontend/enterprise/default/template/intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml +1 -1
  26. app/design/frontend/enterprise/default/template/intelligentreach_integration/intelligentreach_integration.phtml +1 -1
  27. app/design/frontend/enterprise/default/template/intelligentreach_integration/product/intelligentreach_integration.phtml +1 -1
  28. app/etc/modules/IntelligentReach_AmazonPayment.xml +12 -0
  29. app/etc/modules/IntelligentReach_EbayPayment.xml +12 -0
  30. intelligentreach_integration.php +5 -6
  31. package.xml +4 -4
app/code/local/IntelligentReach/AmazonPayment/Helper/Data.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+ class IntelligentReach_AmazonPayment_Helper_Data extends Mage_Core_Helper_Abstract
3
+ {
4
+ }
5
+ ?>
app/code/local/IntelligentReach/AmazonPayment/Model/Pay.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ //Payment Method required for the Intelligent Reach platform marketplace integration (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
+ //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
+ //
6
+ class IntelligentReach_AmazonPayment_Model_Pay extends Mage_Payment_Model_Method_Abstract
7
+ {
8
+
9
+ protected $_code = 'amazonpayment';
10
+ //protected $_formBlockType = 'payment/form_checkmo';
11
+ //protected $_infoBlockType = 'payment/info_checkmo';
12
+
13
+ /**
14
+ * Payment Method features
15
+ * @var bool
16
+ */
17
+ protected $_canUseInternal = true;
18
+ protected $_canUseCheckout = false;
19
+
20
+ }
21
+ ?>
app/code/local/IntelligentReach/AmazonPayment/etc/config.xml ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <modules>
4
+ <IntelligentReach_AmazonPayment>
5
+ <version>0.1.0</version>
6
+ </IntelligentReach_AmazonPayment>
7
+ </modules>
8
+ <global>
9
+ <blocks>
10
+ <amazonpayment>
11
+ <class>IntelligentReach_AmazonPayment_Block</class>
12
+ </amazonpayment>
13
+ </blocks>
14
+ <helpers>
15
+ <amazonpayment>
16
+ <class>IntelligentReach_AmazonPayment_Helper</class>
17
+ </amazonpayment>
18
+ </helpers>
19
+ <models>
20
+ <amazonpayment>
21
+ <class>IntelligentReach_AmazonPayment_Model</class>
22
+ </amazonpayment>
23
+ </models>
24
+
25
+ <resources>
26
+ <amazonpayment_setup>
27
+ <setup>
28
+ <module>IntelligentReach_AmazonPayment</module>
29
+ </setup>
30
+ <connection>
31
+ <use>core_setup</use>
32
+ </connection>
33
+ </amazonpayment_setup>
34
+ <amazonpayment_write>
35
+ <connection>
36
+ <use>core_write</use>
37
+ </connection>
38
+ </amazonpayment_write>
39
+ <amazonpayment_read>
40
+ <connection>
41
+ <use>core_read</use>
42
+ </connection>
43
+ </amazonpayment_read>
44
+ </resources>
45
+ </global>
46
+
47
+ <default>
48
+ <payment>
49
+ <amazonpayment>
50
+ <active>1</active>
51
+ <model>amazonpayment/pay</model>
52
+ <order_status>pending</order_status>
53
+ <title>IR Amazon Payment</title>
54
+ </amazonpayment>
55
+ </payment>
56
+ </default>
57
+ </config>
app/code/local/IntelligentReach/AmazonPayment/etc/system.xml ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <sections>
4
+ <payment>
5
+ <groups>
6
+ <amazonpayment translate="label" module="amazonpayment">
7
+ <label>IR Amazon Payment</label>
8
+ <sort_order>670</sort_order>
9
+ <show_in_default>1</show_in_default>
10
+ <show_in_website>1</show_in_website>
11
+ <show_in_store>0</show_in_store>
12
+ <fields>
13
+ <active translate="label">
14
+ <label>Enabled</label>
15
+ <frontend_type>select</frontend_type>
16
+ <source_model>adminhtml/system_config_source_yesno</source_model>
17
+ <sort_order>1</sort_order>
18
+ <show_in_default>1</show_in_default>
19
+ <show_in_website>1</show_in_website>
20
+ <show_in_store>0</show_in_store>
21
+ </active>
22
+ <order_status translate="label">
23
+ <label>New order status</label>
24
+ <frontend_type>select</frontend_type>
25
+ <source_model>adminhtml/system_config_source_order_status_new</source_model>
26
+ <sort_order>4</sort_order>
27
+ <show_in_default>1</show_in_default>
28
+ <show_in_website>1</show_in_website>
29
+ <show_in_store>0</show_in_store>
30
+ </order_status>
31
+ <title translate="label">
32
+ <label>Title</label>
33
+ <frontend_type>text</frontend_type>
34
+ <sort_order>2</sort_order>
35
+ <show_in_default>1</show_in_default>
36
+ <show_in_website>1</show_in_website>
37
+ <show_in_store>0</show_in_store>
38
+ </title>
39
+ </fields>
40
+ </amazonpayment>
41
+ </groups>
42
+ </payment>
43
+ </sections>
44
+ </config>
app/code/local/IntelligentReach/EbayPayment/Helper/Data.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+ class IntelligentReach_EbayPayment_Helper_Data extends Mage_Core_Helper_Abstract
3
+ {
4
+ }
5
+ ?>
app/code/local/IntelligentReach/EbayPayment/Model/Pay.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ //Payment Method required for the Intelligent Reach platform marketplace integration (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
+ //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
+ //
6
+ class IntelligentReach_EbayPayment_Model_Pay extends Mage_Payment_Model_Method_Abstract
7
+ {
8
+
9
+ protected $_code = 'ebaypayment';
10
+ //protected $_formBlockType = 'payment/form_checkmo';
11
+ //protected $_infoBlockType = 'payment/info_checkmo';
12
+
13
+ /**
14
+ * Payment Method features
15
+ * @var bool
16
+ */
17
+ protected $_canUseInternal = true;
18
+ protected $_canUseCheckout = false;
19
+
20
+ }
21
+ ?>
app/code/local/IntelligentReach/EbayPayment/etc/config.xml ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <modules>
4
+ <IntelligentReach_EbayPayment>
5
+ <!-- declare module's version information for database updates -->
6
+ <version>0.1.0</version>
7
+ </IntelligentReach_EbayPayment>
8
+ </modules>
9
+ <global>
10
+ <!-- IMPORTANT: if you use your own namespace (i.e. CompanyName) you also have to declare blocks group for new module. See topic: http://www.magentocommerce.com/boards/viewthread/22416/#t102732 -->
11
+ <blocks>
12
+ <ebaypayment>
13
+ <class>IntelligentReach_EbayPayment_Block</class>
14
+ </ebaypayment>
15
+ </blocks>
16
+ <helpers>
17
+ <ebaypayment>
18
+ <class>IntelligentReach_EbayPayment_Helper</class>
19
+ </ebaypayment>
20
+ </helpers>
21
+ <!-- declare model group for new module -->
22
+ <models>
23
+ <!-- model group alias to be used in Mage::getModel('ebaypayment/...') -->
24
+ <ebaypayment>
25
+ <!-- base class name for the model group -->
26
+ <class>IntelligentReach_EbayPayment_Model</class>
27
+ </ebaypayment>
28
+ </models>
29
+
30
+ <!-- declare resource setup for new module -->
31
+ <resources>
32
+ <!-- resource identifier -->
33
+ <ebaypayment_setup>
34
+ <!-- specify that this resource is a setup resource and used for upgrades -->
35
+ <setup>
36
+ <!-- which module to look for install/upgrade files in -->
37
+ <module>IntelligentReach_EbayPayment</module>
38
+ </setup>
39
+ <!-- specify database connection for this resource -->
40
+ <connection>
41
+ <!-- do not create new connection, use predefined core setup connection -->
42
+ <use>core_setup</use>
43
+ </connection>
44
+ </ebaypayment_setup>
45
+ <ebaypayment_write>
46
+ <connection>
47
+ <use>core_write</use>
48
+ </connection>
49
+ </ebaypayment_write>
50
+ <ebaypayment_read>
51
+ <connection>
52
+ <use>core_read</use>
53
+ </connection>
54
+ </ebaypayment_read>
55
+ </resources>
56
+ </global>
57
+
58
+ <!-- declare default configuration values for this module -->
59
+ <default>
60
+ <!-- 'ebaypayment' configuration section (tab) -->
61
+ <payment>
62
+ <!-- 'marketplacepayment' configuration group (fieldset) -->
63
+ <ebaypayment>
64
+ <!-- by default this ebaypayment method is inactive -->
65
+ <active>1</active>
66
+ <!-- model to handle logic for this ebaypayment method -->
67
+ <model>ebaypayment/pay</model>
68
+ <!-- order status for new orders paid by this ebaypayment method -->
69
+ <order_status>pending</order_status>
70
+ <!-- default title for ebaypayment checkout page and order view page -->
71
+ <title>IR Ebay Payment</title>
72
+ </ebaypayment>
73
+ </payment>
74
+ </default>
75
+ </config>
app/code/local/IntelligentReach/EbayPayment/etc/system.xml ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <sections>
4
+ <!-- Payment tab -->
5
+ <payment>
6
+ <groups>
7
+ <!-- ebaypayment fieldset -->
8
+ <ebaypayment translate="label" module="ebaypayment">
9
+ <!-- will have title 'New Module' -->
10
+ <label>IR Ebay Payment</label>
11
+ <!-- position between other marketplacepaymentment methods -->
12
+ <sort_order>670</sort_order>
13
+ <!-- do not show this configuration options in store scope -->
14
+ <show_in_default>1</show_in_default>
15
+ <show_in_website>1</show_in_website>
16
+ <show_in_store>0</show_in_store>
17
+ <fields>
18
+ <!-- is this ebaypayment method active for the website? -->
19
+ <active translate="label">
20
+ <!-- label for the field -->
21
+ <label>Enabled</label>
22
+ <!-- input type for configuration value -->
23
+ <frontend_type>select</frontend_type>
24
+ <!-- model to take the option values from -->
25
+ <source_model>adminhtml/system_config_source_yesno</source_model>
26
+ <!-- field position -->
27
+ <sort_order>1</sort_order>
28
+ <!-- do not show this field in store scope -->
29
+ <show_in_default>1</show_in_default>
30
+ <show_in_website>1</show_in_website>
31
+ <show_in_store>0</show_in_store>
32
+ </active>
33
+ <order_status translate="label">
34
+ <label>New order status</label>
35
+ <frontend_type>select</frontend_type>
36
+ <source_model>adminhtml/system_config_source_order_status_new</source_model>
37
+ <sort_order>4</sort_order>
38
+ <show_in_default>1</show_in_default>
39
+ <show_in_website>1</show_in_website>
40
+ <show_in_store>0</show_in_store>
41
+ </order_status>
42
+ <title translate="label">
43
+ <label>Title</label>
44
+ <frontend_type>text</frontend_type>
45
+ <sort_order>2</sort_order>
46
+ <show_in_default>1</show_in_default>
47
+ <show_in_website>1</show_in_website>
48
+ <show_in_store>0</show_in_store>
49
+ </title>
50
+ </fields>
51
+ </ebaypayment>
52
+ </groups>
53
+ </payment>
54
+ </sections>
55
+ </config>
app/code/local/IntelligentReach/Integration/etc/config.xml CHANGED
@@ -24,5 +24,5 @@
24
  </args>
25
  </IntelligentReach_Integration>
26
  </routers>
27
- </admin>
28
  </config>
24
  </args>
25
  </IntelligentReach_Integration>
26
  </routers>
27
+ </admin>
28
  </config>
app/design/frontend/base/default/layout/intelligentreach_integration.xml CHANGED
@@ -1,31 +1,31 @@
1
  <?xml version="1.0"?>
2
  <layout version="0.1.0">
3
  <default>
4
- <reference name="after_body_start">
5
  <block type="core/template" before="-" name="intelligentreach_integration_allpages" template="intelligentreach_integration/intelligentreach_integration.phtml"/>
6
  </reference>
7
  </default>
8
 
9
  <catalog_product_view>
10
- <reference name="after_body_start">
11
  <block type="core/template" before="-" name="intelligentreach_integration_product_view" template="intelligentreach_integration/product/intelligentreach_integration.phtml"/>
12
  </reference>
13
  </catalog_product_view>
14
 
15
  <checkout_cart_index>
16
- <reference name="after_body_start">
17
  <block type="core/template" before="-" name="intelligentreach_integration_cart_index" template="intelligentreach_integration/basket/intelligentreach_integration.phtml"/>
18
  </reference>
19
  </checkout_cart_index>
20
 
21
  <checkout_onepage_success>
22
- <reference name="after_body_start">
23
  <block type="core/template" before="-" name="intelligentreach_integration_onepage_success" template="intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml"/>
24
  </reference>
25
  </checkout_onepage_success>
26
 
27
  <checkout_multishipping_success>
28
- <reference name="after_body_start">
29
  <block type="core/template" before="-" name="intelligentreach_integration_multishipping_success" template="intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml"/>
30
  </reference>
31
  </checkout_multishipping_success>
1
  <?xml version="1.0"?>
2
  <layout version="0.1.0">
3
  <default>
4
+ <reference name="before_body_end">
5
  <block type="core/template" before="-" name="intelligentreach_integration_allpages" template="intelligentreach_integration/intelligentreach_integration.phtml"/>
6
  </reference>
7
  </default>
8
 
9
  <catalog_product_view>
10
+ <reference name="before_body_end">
11
  <block type="core/template" before="-" name="intelligentreach_integration_product_view" template="intelligentreach_integration/product/intelligentreach_integration.phtml"/>
12
  </reference>
13
  </catalog_product_view>
14
 
15
  <checkout_cart_index>
16
+ <reference name="before_body_end">
17
  <block type="core/template" before="-" name="intelligentreach_integration_cart_index" template="intelligentreach_integration/basket/intelligentreach_integration.phtml"/>
18
  </reference>
19
  </checkout_cart_index>
20
 
21
  <checkout_onepage_success>
22
+ <reference name="before_body_end">
23
  <block type="core/template" before="-" name="intelligentreach_integration_onepage_success" template="intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml"/>
24
  </reference>
25
  </checkout_onepage_success>
26
 
27
  <checkout_multishipping_success>
28
+ <reference name="before_body_end">
29
  <block type="core/template" before="-" name="intelligentreach_integration_multishipping_success" template="intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml"/>
30
  </reference>
31
  </checkout_multishipping_success>
app/design/frontend/base/default/template/intelligentreach_integration/basket/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Basket Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Basket Page
app/design/frontend/base/default/template/intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Multi-shipping Checkout Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Multi-shipping Checkout Page
app/design/frontend/base/default/template/intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //One Page Checkout Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //One Page Checkout Page
app/design/frontend/base/default/template/intelligentreach_integration/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //All Pages
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //All Pages
app/design/frontend/base/default/template/intelligentreach_integration/product/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Product Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Product Page
app/design/frontend/default/default/layout/intelligentreach_integration.xml CHANGED
@@ -1,31 +1,31 @@
1
  <?xml version="1.0"?>
2
  <layout version="0.1.0">
3
  <default>
4
- <reference name="after_body_start">
5
  <block type="core/template" before="-" name="intelligentreach_integration_allpages" template="intelligentreach_integration/intelligentreach_integration.phtml"/>
6
  </reference>
7
  </default>
8
 
9
  <catalog_product_view>
10
- <reference name="after_body_start">
11
  <block type="core/template" before="-" name="intelligentreach_integration_product_view" template="intelligentreach_integration/product/intelligentreach_integration.phtml"/>
12
  </reference>
13
  </catalog_product_view>
14
 
15
  <checkout_cart_index>
16
- <reference name="after_body_start">
17
  <block type="core/template" before="-" name="intelligentreach_integration_cart_index" template="intelligentreach_integration/basket/intelligentreach_integration.phtml"/>
18
  </reference>
19
  </checkout_cart_index>
20
 
21
  <checkout_onepage_success>
22
- <reference name="after_body_start">
23
  <block type="core/template" before="-" name="intelligentreach_integration_onepage_success" template="intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml"/>
24
  </reference>
25
  </checkout_onepage_success>
26
 
27
  <checkout_multishipping_success>
28
- <reference name="after_body_start">
29
  <block type="core/template" before="-" name="intelligentreach_integration_multishipping_success" template="intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml"/>
30
  </reference>
31
  </checkout_multishipping_success>
1
  <?xml version="1.0"?>
2
  <layout version="0.1.0">
3
  <default>
4
+ <reference name="before_body_end">
5
  <block type="core/template" before="-" name="intelligentreach_integration_allpages" template="intelligentreach_integration/intelligentreach_integration.phtml"/>
6
  </reference>
7
  </default>
8
 
9
  <catalog_product_view>
10
+ <reference name="before_body_end">
11
  <block type="core/template" before="-" name="intelligentreach_integration_product_view" template="intelligentreach_integration/product/intelligentreach_integration.phtml"/>
12
  </reference>
13
  </catalog_product_view>
14
 
15
  <checkout_cart_index>
16
+ <reference name="before_body_end">
17
  <block type="core/template" before="-" name="intelligentreach_integration_cart_index" template="intelligentreach_integration/basket/intelligentreach_integration.phtml"/>
18
  </reference>
19
  </checkout_cart_index>
20
 
21
  <checkout_onepage_success>
22
+ <reference name="before_body_end">
23
  <block type="core/template" before="-" name="intelligentreach_integration_onepage_success" template="intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml"/>
24
  </reference>
25
  </checkout_onepage_success>
26
 
27
  <checkout_multishipping_success>
28
+ <reference name="before_body_end">
29
  <block type="core/template" before="-" name="intelligentreach_integration_multishipping_success" template="intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml"/>
30
  </reference>
31
  </checkout_multishipping_success>
app/design/frontend/default/default/template/intelligentreach_integration/basket/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Basket Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Basket Page
app/design/frontend/default/default/template/intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Multi-shipping Checkout Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Multi-shipping Checkout Page
app/design/frontend/default/default/template/intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //One Page Checkout Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //One Page Checkout Page
app/design/frontend/default/default/template/intelligentreach_integration/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //All Pages
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //All Pages
app/design/frontend/default/default/template/intelligentreach_integration/product/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Product Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Product Page
app/design/frontend/enterprise/default/layout/intelligentreach_integration.xml CHANGED
@@ -1,31 +1,31 @@
1
  <?xml version="1.0"?>
2
  <layout version="0.1.0">
3
  <default>
4
- <reference name="after_body_start">
5
  <block type="core/template" before="-" name="intelligentreach_integration_allpages" template="intelligentreach_integration/intelligentreach_integration.phtml"/>
6
  </reference>
7
  </default>
8
 
9
  <catalog_product_view>
10
- <reference name="after_body_start">
11
  <block type="core/template" before="-" name="intelligentreach_integration_product_view" template="intelligentreach_integration/product/intelligentreach_integration.phtml"/>
12
  </reference>
13
  </catalog_product_view>
14
 
15
  <checkout_cart_index>
16
- <reference name="after_body_start">
17
  <block type="core/template" before="-" name="intelligentreach_integration_cart_index" template="intelligentreach_integration/basket/intelligentreach_integration.phtml"/>
18
  </reference>
19
  </checkout_cart_index>
20
 
21
  <checkout_onepage_success>
22
- <reference name="after_body_start">
23
  <block type="core/template" before="-" name="intelligentreach_integration_onepage_success" template="intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml"/>
24
  </reference>
25
  </checkout_onepage_success>
26
 
27
  <checkout_multishipping_success>
28
- <reference name="after_body_start">
29
  <block type="core/template" before="-" name="intelligentreach_integration_multishipping_success" template="intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml"/>
30
  </reference>
31
  </checkout_multishipping_success>
1
  <?xml version="1.0"?>
2
  <layout version="0.1.0">
3
  <default>
4
+ <reference name="before_body_end">
5
  <block type="core/template" before="-" name="intelligentreach_integration_allpages" template="intelligentreach_integration/intelligentreach_integration.phtml"/>
6
  </reference>
7
  </default>
8
 
9
  <catalog_product_view>
10
+ <reference name="before_body_end">
11
  <block type="core/template" before="-" name="intelligentreach_integration_product_view" template="intelligentreach_integration/product/intelligentreach_integration.phtml"/>
12
  </reference>
13
  </catalog_product_view>
14
 
15
  <checkout_cart_index>
16
+ <reference name="before_body_end">
17
  <block type="core/template" before="-" name="intelligentreach_integration_cart_index" template="intelligentreach_integration/basket/intelligentreach_integration.phtml"/>
18
  </reference>
19
  </checkout_cart_index>
20
 
21
  <checkout_onepage_success>
22
+ <reference name="before_body_end">
23
  <block type="core/template" before="-" name="intelligentreach_integration_onepage_success" template="intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml"/>
24
  </reference>
25
  </checkout_onepage_success>
26
 
27
  <checkout_multishipping_success>
28
+ <reference name="before_body_end">
29
  <block type="core/template" before="-" name="intelligentreach_integration_multishipping_success" template="intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml"/>
30
  </reference>
31
  </checkout_multishipping_success>
app/design/frontend/enterprise/default/template/intelligentreach_integration/basket/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Basket Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Basket Page
app/design/frontend/enterprise/default/template/intelligentreach_integration/checkout/multishipping/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Multi-shipping Checkout Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Multi-shipping Checkout Page
app/design/frontend/enterprise/default/template/intelligentreach_integration/checkout/onepage/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //One Page Checkout Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //One Page Checkout Page
app/design/frontend/enterprise/default/template/intelligentreach_integration/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //All Pages
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //All Pages
app/design/frontend/enterprise/default/template/intelligentreach_integration/product/intelligentreach_integration.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
- //Copyright � 2012 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Product Page
1
  <?php
2
  //Tracking code for the Intelligent Reach platform (http://www.intelligentreach.com).
3
+ //Copyright � 2014 Intuitive Search Technologies Ltd.
4
  //Release under OSL license (http://opensource.org/licenses/osl-3.0).
5
  //
6
  //Product Page
app/etc/modules/IntelligentReach_AmazonPayment.xml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <IntelligentReach_AmazonPayment>
5
+ <active>true</active>
6
+ <codePool>local</codePool>
7
+ <depends>
8
+ <Mage_Payment />
9
+ </depends>
10
+ </IntelligentReach_AmazonPayment>
11
+ </modules>
12
+ </config>
app/etc/modules/IntelligentReach_EbayPayment.xml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <IntelligentReach_EbayPayment>
5
+ <active>true</active>
6
+ <codePool>local</codePool>
7
+ <depends>
8
+ <Mage_Payment />
9
+ </depends>
10
+ </IntelligentReach_EbayPayment>
11
+ </modules>
12
+ </config>
intelligentreach_integration.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- /** Version 1.0.10 Last updated by Kire on 28/02/2013 **/
3
 
4
  ini_set('display_errors', 1);
5
  ini_set('max_execution_time', 1800);
@@ -103,6 +103,10 @@ function printProducts($products)
103
 
104
  if ($key!=='stock_item')
105
  {
 
 
 
 
106
 
107
  $url = $product->getProductUrl();
108
 
@@ -122,11 +126,6 @@ function printProducts($products)
122
  {
123
  $value = $baseUrl."media/catalog/product".$value;
124
  }
125
-
126
- if ($product->getResource()->getAttribute($key) != null)
127
- {
128
- $value = $product->getResource()->getAttribute($key)->getFrontend()->getValue($product);
129
- }
130
 
131
  $value = "<![CDATA[$value]]>";
132
 
1
  <?php
2
+ /** Version 1.0.16 Last updated by Kire on 24/02/2014 **/
3
 
4
  ini_set('display_errors', 1);
5
  ini_set('max_execution_time', 1800);
103
 
104
  if ($key!=='stock_item')
105
  {
106
+ if ($product->getResource()->getAttribute($key) != null)
107
+ {
108
+ $value = $product->getResource()->getAttribute($key)->getFrontend()->getValue($product);
109
+ }
110
 
111
  $url = $product->getProductUrl();
112
 
126
  {
127
  $value = $baseUrl."media/catalog/product".$value;
128
  }
 
 
 
 
 
129
 
130
  $value = "<![CDATA[$value]]>";
131
 
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Intelligent_Reach</name>
4
- <version>1.0.15</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/OSL-3.0">OSL</license>
7
  <channel>community</channel>
@@ -17,9 +17,9 @@ Intelligent reach also offers advanced insight and trading services; whilst ensu
17
  Contact us to arrange a free E-commerce therapy session. Get advice about e-privacy compliance, tag management, analytics or BI implementations and Data quality as well as any key pain points or challenges which are hampering your growth.</description>
18
  <notes>Stable release. Compatible with older versions. Feed creation has been optimized to handle larger loads. The option to choose the store is now available. Can retrieve associated products for grouped types.Bug fixes.Has support for PHP V5.2</notes>
19
  <authors><author><name>Intelligent Reach</name><user>auto-converted</user><email>development@intelligentreach.com</email></author></authors>
20
- <date>2013-09-12</date>
21
- <time>11:00:37</time>
22
- <contents><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="IntelligentReach_Integration.xml" hash="6cdd19a11572e7073dbb3d746b6b57b6"/></dir></dir><dir name="code"><dir name="local"><dir name="IntelligentReach"><dir name="Integration"><dir name="etc"><file name="config.xml" hash="9f5204d61d6e65bc7f13ccd5e34cafc4"/></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="intelligentreach_integration.xml" hash="27ec74d2cd855aa9929e4ca27bc3bb16"/></dir><dir name="template"><dir name="intelligentreach_integration"><dir name="product"><file name="intelligentreach_integration.phtml" hash="197744f76c7bced3b054576421597dcd"/></dir><dir name="basket"><file name="intelligentreach_integration.phtml" hash="c60e4fa966a829285d4aa3451b2f892c"/></dir><dir name="checkout"><dir name="onepage"><file name="intelligentreach_integration.phtml" hash="15cda55afa12fdf606cb1e67c1f7c562"/></dir><dir name="multishipping"><file name="intelligentreach_integration.phtml" hash="9d7b34fdee46ed02596138ebdb0033ea"/></dir></dir><file name="intelligentreach_integration.phtml" hash="1cc1a973008bfc9c4c37276487307d8a"/></dir></dir></dir></dir><dir name="enterprise"><dir name="default"><dir name="layout"><file name="intelligentreach_integration.xml" hash="27ec74d2cd855aa9929e4ca27bc3bb16"/></dir><dir name="template"><dir name="intelligentreach_integration"><dir name="product"><file name="intelligentreach_integration.phtml" hash="197744f76c7bced3b054576421597dcd"/></dir><dir name="basket"><file name="intelligentreach_integration.phtml" hash="c60e4fa966a829285d4aa3451b2f892c"/></dir><dir name="checkout"><dir name="onepage"><file name="intelligentreach_integration.phtml" hash="15cda55afa12fdf606cb1e67c1f7c562"/></dir><dir name="multishipping"><file name="intelligentreach_integration.phtml" hash="9d7b34fdee46ed02596138ebdb0033ea"/></dir></dir><file name="intelligentreach_integration.phtml" hash="1cc1a973008bfc9c4c37276487307d8a"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="intelligentreach_integration.xml" hash="27ec74d2cd855aa9929e4ca27bc3bb16"/></dir><dir name="template"><dir name="intelligentreach_integration"><dir name="product"><file name="intelligentreach_integration.phtml" hash="197744f76c7bced3b054576421597dcd"/></dir><dir name="basket"><file name="intelligentreach_integration.phtml" hash="c60e4fa966a829285d4aa3451b2f892c"/></dir><dir name="checkout"><dir name="onepage"><file name="intelligentreach_integration.phtml" hash="15cda55afa12fdf606cb1e67c1f7c562"/></dir><dir name="multishipping"><file name="intelligentreach_integration.phtml" hash="9d7b34fdee46ed02596138ebdb0033ea"/></dir></dir><file name="intelligentreach_integration.phtml" hash="1cc1a973008bfc9c4c37276487307d8a"/></dir></dir></dir></dir></dir></dir></dir><dir name="."><file name="intelligentreach_integration.php" hash="1957b0d1e7808f3700d9e1158055510b"/></dir></target></contents>
23
  <compatible/>
24
  <dependencies/>
25
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Intelligent_Reach</name>
4
+ <version>1.0.16</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/OSL-3.0">OSL</license>
7
  <channel>community</channel>
17
  Contact us to arrange a free E-commerce therapy session. Get advice about e-privacy compliance, tag management, analytics or BI implementations and Data quality as well as any key pain points or challenges which are hampering your growth.</description>
18
  <notes>Stable release. Compatible with older versions. Feed creation has been optimized to handle larger loads. The option to choose the store is now available. Can retrieve associated products for grouped types.Bug fixes.Has support for PHP V5.2</notes>
19
  <authors><author><name>Intelligent Reach</name><user>auto-converted</user><email>development@intelligentreach.com</email></author></authors>
20
+ <date>2014-02-24</date>
21
+ <time>19:18:03</time>
22
+ <contents><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="IntelligentReach_Integration.xml" hash="6cdd19a11572e7073dbb3d746b6b57b6"/><file name="IntelligentReach_AmazonPayment.xml" hash="10faf651f19ea2298217be1a95707b7c"/><file name="IntelligentReach_EbayPayment.xml" hash="eb9acbd1b55da29e10b09981f0b7af8f"/></dir></dir><dir name="code"><dir name="local"><dir name="IntelligentReach"><dir name="Integration"><dir name="etc"><file name="config.xml" hash="a9244662abbf57f766826a21fce30d8e"/></dir></dir><dir name="AmazonPayment"><dir name="etc"><file name="config.xml" hash="e72378a46936905b3bfc113b177d8d31"/><file name="system.xml" hash="03da0ec1aece3017bbed22266feac2c9"/></dir><dir name="Helper"><file name="Data.php" hash="2e4ef89b210d0f992cd25b8ef5f4b96e"/></dir><dir name="Model"><file name="Pay.php" hash="cb9c59584f6bd3290620cd11ba44018a"/></dir></dir><dir name="EbayPayment"><dir name="etc"><file name="config.xml" hash="aea6e549158173072df9e630a46be7eb"/><file name="system.xml" hash="a0b57abdc5a903b1b95555f8ee7fe140"/></dir><dir name="Helper"><file name="Data.php" hash="0e112e22a4786f3624216628dee796a0"/></dir><dir name="Model"><file name="Pay.php" hash="35d0697bcd84250cc4e39ca108a8ecad"/></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="intelligentreach_integration.xml" hash="c45eb729e1e4b5025b25c20ac2723eeb"/></dir><dir name="template"><dir name="intelligentreach_integration"><dir name="product"><file name="intelligentreach_integration.phtml" hash="0d1f3ce4a57d977d8955176b01e2f87d"/></dir><dir name="basket"><file name="intelligentreach_integration.phtml" hash="983743acab4cd1c2819ea4fb6eebe0b5"/></dir><dir name="checkout"><dir name="onepage"><file name="intelligentreach_integration.phtml" hash="dfcfe625fadaf06fb3b069cb9257b4cc"/></dir><dir name="multishipping"><file name="intelligentreach_integration.phtml" hash="818d2226ed607d78b709d72cb6c05538"/></dir></dir><file name="intelligentreach_integration.phtml" hash="cfcf6e1c2de50fa66258a820fb296775"/></dir></dir></dir></dir><dir name="enterprise"><dir name="default"><dir name="layout"><file name="intelligentreach_integration.xml" hash="c45eb729e1e4b5025b25c20ac2723eeb"/></dir><dir name="template"><dir name="intelligentreach_integration"><dir name="product"><file name="intelligentreach_integration.phtml" hash="0d1f3ce4a57d977d8955176b01e2f87d"/></dir><dir name="basket"><file name="intelligentreach_integration.phtml" hash="983743acab4cd1c2819ea4fb6eebe0b5"/></dir><dir name="checkout"><dir name="onepage"><file name="intelligentreach_integration.phtml" hash="dfcfe625fadaf06fb3b069cb9257b4cc"/></dir><dir name="multishipping"><file name="intelligentreach_integration.phtml" hash="818d2226ed607d78b709d72cb6c05538"/></dir></dir><file name="intelligentreach_integration.phtml" hash="cfcf6e1c2de50fa66258a820fb296775"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="intelligentreach_integration.xml" hash="c45eb729e1e4b5025b25c20ac2723eeb"/></dir><dir name="template"><dir name="intelligentreach_integration"><dir name="product"><file name="intelligentreach_integration.phtml" hash="0d1f3ce4a57d977d8955176b01e2f87d"/></dir><dir name="basket"><file name="intelligentreach_integration.phtml" hash="983743acab4cd1c2819ea4fb6eebe0b5"/></dir><dir name="checkout"><dir name="onepage"><file name="intelligentreach_integration.phtml" hash="dfcfe625fadaf06fb3b069cb9257b4cc"/></dir><dir name="multishipping"><file name="intelligentreach_integration.phtml" hash="818d2226ed607d78b709d72cb6c05538"/></dir></dir><file name="intelligentreach_integration.phtml" hash="cfcf6e1c2de50fa66258a820fb296775"/></dir></dir></dir></dir></dir></dir></dir><dir name="."><file name="intelligentreach_integration.php" hash="35931c4fa636e57baf3a10d8e0c87995"/></dir></target></contents>
23
  <compatible/>
24
  <dependencies/>
25
  </package>