Exclusiveconcepts_Conversionsondemand - Version 1.1.5

Version Notes

Extension upgraded to support PHP 5.5.1

Download this release

Release Info

Developer Magento Core Team
Extension Exclusiveconcepts_Conversionsondemand
Version 1.1.5
Comparing to
See all releases


Code changes from version 1.1.4 to 1.1.5

app/design/frontend/base/default/layout/conversionsondemand/conversions360/conversions360.xml ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <layout version="0.1.0">
3
+ <default>
4
+ <reference name="before_body_end">
5
+ <block type="conversions360/code" name="conversionsondemand_conversions360" template="conversionsondemand/conversions360/code.phtml" as="conversionsondemand_conversions360" />
6
+ </reference>
7
+ </default>
8
+ <catalog_product_view>
9
+ <reference name="head">
10
+ <block type="conversions360/identifier" name="conversions360.identifier.product">
11
+ <action method="setCodIdentifier">
12
+ <value>PRODUCT</value>
13
+ </action>
14
+ </block>
15
+ </reference>
16
+ </catalog_product_view>
17
+ <checkout_cart_index>
18
+ <reference name="head">
19
+ <block type="conversions360/identifier" name="conversions360.identifier.cart">
20
+ <action method="setCodIdentifier">
21
+ <value>CART</value>
22
+ </action>
23
+ </block>
24
+ </reference>
25
+ </checkout_cart_index>
26
+ <checkout_onepage_index>
27
+ <reference name="head">
28
+ <block type="conversions360/identifier" name="conversions360.identifier.checkout">
29
+ <action method="setCodIdentifier">
30
+ <value>CHECKOUT</value>
31
+ </action>
32
+ </block>
33
+ </reference>
34
+ </checkout_onepage_index>
35
+ <checkout_onepage_success translate="label">
36
+ <reference name="head">
37
+ <block type="conversions360/success" name="conversions360.success.onepage" template="conversionsondemand/conversions360/success.phtml">
38
+ <action method="setCodIdentifier">
39
+ <value>SUCCESS</value>
40
+ </action>
41
+ </block>
42
+ </reference>
43
+ </checkout_onepage_success>
44
+ <checkout_multishipping_login>
45
+ <reference name="head">
46
+ <block type="conversions360/identifier" name="conversions360.identifier.checkout.multishipping.login">
47
+ <action method="setCodIdentifier">
48
+ <value>CHECKOUT</value>
49
+ </action>
50
+ </block>
51
+ </reference>
52
+ </checkout_multishipping_login>
53
+ <checkout_multishipping_register>
54
+ <reference name="head">
55
+ <block type="conversions360/identifier" name="conversions360.identifier.checkout.multishipping.register">
56
+ <action method="setCodIdentifier">
57
+ <value>CHECKOUT</value>
58
+ </action>
59
+ </block>
60
+ </reference>
61
+ </checkout_multishipping_register>
62
+ <checkout_multishipping_addresses>
63
+ <reference name="head">
64
+ <block type="conversions360/identifier" name="conversions360.identifier.checkout.multishipping.addresses">
65
+ <action method="setCodIdentifier">
66
+ <value>CHECKOUT</value>
67
+ </action>
68
+ </block>
69
+ </reference>
70
+ </checkout_multishipping_addresses>
71
+ <checkout_multishipping_shipping>
72
+ <reference name="head">
73
+ <block type="conversions360/identifier" name="conversions360.identifier.checkout.multishipping.shipping">
74
+ <action method="setCodIdentifier">
75
+ <value>CHECKOUT</value>
76
+ </action>
77
+ </block>
78
+ </reference>
79
+ </checkout_multishipping_shipping>
80
+ <checkout_multishipping_billing>
81
+ <reference name="head">
82
+ <block type="conversions360/identifier" name="conversions360.identifier.checkout.multishipping.billing">
83
+ <action method="setCodIdentifier">
84
+ <value>CHECKOUT</value>
85
+ </action>
86
+ </block>
87
+ </reference>
88
+ </checkout_multishipping_billing>
89
+ <checkout_multishipping_overview>
90
+ <reference name="head">
91
+ <block type="conversions360/identifier" name="conversions360.identifier.checkout.multishipping.overview">
92
+ <action method="setCodIdentifier">
93
+ <value>CHECKOUT</value>
94
+ </action>
95
+ </block>
96
+ </reference>
97
+ </checkout_multishipping_overview>
98
+ <checkout_multishipping_success translate="label">
99
+ <reference name="head">
100
+ <block type="conversions360/multishipping_success" name="conversions360.success.multishipping" template="conversionsondemand/conversions360/success.phtml">
101
+ <action method="setCodIdentifier">
102
+ <value>SUCCESS</value>
103
+ </action>
104
+ </block>
105
+ </reference>
106
+ </checkout_multishipping_success>
107
+ </layout>
app/design/frontend/base/default/template/conversionsondemand/conversions360/code.phtml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if($this->codSnippetEnabled() && strlen($this->getStoreIdentifier()) > 0):
3
+ $storeIdentifier = strip_tags($this->getStoreIdentifier());
4
+ $storePlatform = strip_tags($this->getStorePlatform());
5
+ $codServiceUrl = $this->getCodServiceUrl() . 'magento-loader.php?d=' . $storeIdentifier . '&p=' . $storePlatform ;
6
+ ?>
7
+ <!--- Conversions On Demand script, more info at www.conversionsondemand.com - Do Not Remove or Replace -->
8
+ <script language="javascript">
9
+ var cod_cartSubtotalAmt = parseFloat(<?php echo floatval($this->getCartSubTotal()); ?>);
10
+ var COD_CONFIG= {'platform': '<?php echo $storePlatform; ?>','stoken':'<?php echo $storeIdentifier; ?>'};
11
+ </script>
12
+ <script language=javascript src="<?php echo $codServiceUrl; ?>"></script>
13
+ <!--- Conversions On Demand script, more info at www.conversionsondemand.com - Do Not Remove or Replace -->
14
+ <?php
15
+ endif;
16
+ ?>
app/design/frontend/base/default/template/conversionsondemand/conversions360/success.phtml ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $orderSummary = $this->getOrderDetail();
3
+ ?>
4
+ <script language=javascript>
5
+ var cod_page_guid = 'SUCCESS';
6
+ var cod_ab_orderSubTotal = [<?php echo implode($orderSummary['subtotals'],',') ?>];
7
+ var cod_ab_orderTotal = [<?php echo implode($orderSummary['totals'],',') ?>];
8
+ var cod_ab_orderNum=[<?php echo implode($orderSummary['orderids'],',') ?>];
9
+ var cod_ab_numOfItems=[<?php echo implode($orderSummary['numitems'],',') ?>];
10
+ var cod_ab_orderSubTotalDiscounted = [<?php echo implode($orderSummary['discounts'],',') ?>];
11
+ <?php if(count($orderSummary['itemnames']) > 0): ?>
12
+ var cod_ab_product_items=[<?php echo "[". implode($orderSummary['itemnames'],'],[') . "]"; ?>];
13
+ <?php else: ?>
14
+ var cod_ab_product_items=[];
15
+ <?php endif;?>
16
+ <?php if(count($orderSummary['itemids']) > 0): ?>
17
+ var cod_ab_product_ids=[<?php echo "[". implode($orderSummary['itemids'],'],[') . "]"; ?>];
18
+ <?php else: ?>
19
+ var cod_ab_product_ids=[];
20
+ <?php endif;?>
21
+ <?php if(count($orderSummary['itemcodes']) > 0): ?>
22
+ var cod_ab_product_codes=[<?php echo "[". implode($orderSummary['itemcodes'],'],[') . "]"; ?>];
23
+ <?php else: ?>
24
+ var cod_ab_product_codes=[];
25
+ <?php endif;?>
26
+ <?php if(count($orderSummary['itemqty']) > 0): ?>
27
+ var cod_ab_product_qtys=[<?php echo "[". implode($orderSummary['itemqty'],'],[') . "]"; ?>];
28
+ <?php else: ?>
29
+ var cod_ab_product_qtys=[];
30
+ <?php endif;?>
31
+ <?php if(count($orderSummary['itemprices']) > 0): ?>
32
+ var cod_ab_product_price=[<?php echo "[". implode($orderSummary['itemprices'],'],[') . "]"; ?>];
33
+ <?php else: ?>
34
+ var cod_ab_product_price=[];
35
+ <?php endif;?>
36
+ </script>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Exclusiveconcepts_Conversionsondemand</name>
4
- <version>1.1.4</version>
5
  <stability>stable</stability>
6
  <license uri="https://www.conversionsondemand.com/codadmin2/files/COD-Master-Agreement.pdf">Conversions On Demand Terms Of Service</license>
7
  <channel>community</channel>
@@ -35,8 +35,8 @@ offers to motivate shoppers to immediately buy from you. You can control&#xD;
35
  <notes>Extension upgraded to support PHP 5.5.1</notes>
36
  <authors><author><name>Herb Osher</name><user>auto-converted</user><email>herb@conversionsondemand.com</email></author></authors>
37
  <date>2013-08-15</date>
38
- <time>09:13:29</time>
39
- <contents><target name="magecommunity"><dir name="Conversionsondemand"><dir name="Conversions360"><dir name="Block"><dir name="Multishipping"><file name="Success.php" hash="91f894fed9c4b94ccb3cfcd346627f92"/></dir><file name="Code.php" hash="5b24a33c55d6988d2ebbff1310341a50"/><file name="Identifier.php" hash="ae99e5ab385fd825be17ef7ae812ecc4"/><file name="Success.php" hash="0544e1889e339aef0c3953fd00450684"/></dir><dir name="Helper"><file name="Data.php" hash="6f290082191f68096216b234af2deaa7"/></dir><dir name="Model"><dir name="Config"><dir name="Source"><file name="Edition.php" hash="a7268f311f457305189ca2906f2a7c41"/></dir></dir><dir name="Container"><file name="Code.php" hash="90e9cba3004db39fe2443c467fa0577d"/><file name="Identifier.php" hash="427b87bbdd3c82e13fa0136523973a11"/></dir><file name="Observer.php" hash="ebcbe407157dd30e71366dc5620ce1d7"/></dir><dir name="controllers"><file name="IndexController.php" hash="60d63f5bf5b208193567a72682475b02"/></dir><dir name="etc"><file name="cache.xml" hash="5f5c7e42e915f9607ee710d5b31bad5d"/><file name="config.xml" hash="75707d44e6b8296b68c37e624db1d409"/><file name="system.xml" hash="ab64016b6349164727277e4d075d6164"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Conversionsondemand_Conversions360.xml" hash="2ba3e087b9bf8d769741b89481dee559"/></dir></target><target name="magelocal"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="conversionsondemand"><dir name="conversions360"><file name="conversions360.xml" hash=""/></dir></dir></dir><dir name="template"><dir name="conversionsondemand"><dir name="conversions360"><file name="code.phtml" hash=""/><file name="success.phtml" hash=""/></dir></dir></dir></dir></dir></dir></target></contents>
40
  <compatible/>
41
  <dependencies/>
42
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Exclusiveconcepts_Conversionsondemand</name>
4
+ <version>1.1.5</version>
5
  <stability>stable</stability>
6
  <license uri="https://www.conversionsondemand.com/codadmin2/files/COD-Master-Agreement.pdf">Conversions On Demand Terms Of Service</license>
7
  <channel>community</channel>
35
  <notes>Extension upgraded to support PHP 5.5.1</notes>
36
  <authors><author><name>Herb Osher</name><user>auto-converted</user><email>herb@conversionsondemand.com</email></author></authors>
37
  <date>2013-08-15</date>
38
+ <time>10:57:14</time>
39
+ <contents><target name="magecommunity"><dir name="Conversionsondemand"><dir name="Conversions360"><dir name="Block"><dir name="Multishipping"><file name="Success.php" hash="91f894fed9c4b94ccb3cfcd346627f92"/></dir><file name="Code.php" hash="5b24a33c55d6988d2ebbff1310341a50"/><file name="Identifier.php" hash="ae99e5ab385fd825be17ef7ae812ecc4"/><file name="Success.php" hash="0544e1889e339aef0c3953fd00450684"/></dir><dir name="Helper"><file name="Data.php" hash="6f290082191f68096216b234af2deaa7"/></dir><dir name="Model"><dir name="Config"><dir name="Source"><file name="Edition.php" hash="a7268f311f457305189ca2906f2a7c41"/></dir></dir><dir name="Container"><file name="Code.php" hash="90e9cba3004db39fe2443c467fa0577d"/><file name="Identifier.php" hash="427b87bbdd3c82e13fa0136523973a11"/></dir><file name="Observer.php" hash="ebcbe407157dd30e71366dc5620ce1d7"/></dir><dir name="controllers"><file name="IndexController.php" hash="60d63f5bf5b208193567a72682475b02"/></dir><dir name="etc"><file name="cache.xml" hash="5f5c7e42e915f9607ee710d5b31bad5d"/><file name="config.xml" hash="75707d44e6b8296b68c37e624db1d409"/><file name="system.xml" hash="ab64016b6349164727277e4d075d6164"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Conversionsondemand_Conversions360.xml" hash="2ba3e087b9bf8d769741b89481dee559"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="conversionsondemand"><dir name="conversions360"><file name="conversions360.xml" hash="335ce03fe21e63ed1de64e2f4219998c"/></dir></dir></dir><dir name="template"><dir name="conversionsondemand"><dir name="conversions360"><file name="code.phtml" hash="77949fd564333bf8b0316229d056f0b8"/><file name="success.phtml" hash="0f4f25812b1484d69e8b6285213ef616"/></dir></dir></dir></dir></dir></dir></target></contents>
40
  <compatible/>
41
  <dependencies/>
42
  </package>