Version Notes
Now identifies guest checkouts. Updated download and outgoing tracking defaults.
Download this release
Release Info
Developer | Woopra |
Extension | Woopra_Analytics_Event_And_Visitor_Tracking |
Version | 1.9.0 |
Comparing to | |
See all releases |
Code changes from version 1.8.0 to 1.9.0
- app/code/community/Woopra/Analytics/Block/Script.php +6 -0
- app/code/community/Woopra/Analytics/Model/Observer.php +5 -0
- app/code/community/Woopra/Analytics/etc/config.xml +3 -4
- app/code/community/Woopra/Analytics/etc/system.xml +2 -2
- app/design/frontend/base/default/template/woopra/checkout.phtml +61 -61
- app/design/frontend/base/default/template/woopra/script.phtml +6 -3
- package.xml +5 -5
app/code/community/Woopra/Analytics/Block/Script.php
CHANGED
@@ -235,6 +235,12 @@ class Woopra_Analytics_Block_Script extends Mage_Core_Block_Template
|
|
235 |
->getData('woopra_checkout_success_total_items_ordered', true);
|
236 |
$data['woopra_checkout_success_profit'] = Mage::getSingleton('core/session')
|
237 |
->getData('woopra_checkout_success_profit', true);
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
}
|
239 |
|
240 |
if (Mage::helper('woopra')->getCmsNoRoute() != NULL) {
|
235 |
->getData('woopra_checkout_success_total_items_ordered', true);
|
236 |
$data['woopra_checkout_success_profit'] = Mage::getSingleton('core/session')
|
237 |
->getData('woopra_checkout_success_profit', true);
|
238 |
+
$data['woopra_checkout_success_guest_trigger'] = Mage::getSingleton('core/session')
|
239 |
+
->getData('woopra_checkout_success_guest_trigger', true);
|
240 |
+
$data['woopra_checkout_success_guest_name'] = Mage::getSingleton('core/session')
|
241 |
+
->getData('woopra_checkout_success_guest_name', true);
|
242 |
+
$data['woopra_checkout_success_guest_email'] = Mage::getSingleton('core/session')
|
243 |
+
->getData('woopra_checkout_success_guest_email', true);
|
244 |
}
|
245 |
|
246 |
if (Mage::helper('woopra')->getCmsNoRoute() != NULL) {
|
app/code/community/Woopra/Analytics/Model/Observer.php
CHANGED
@@ -213,6 +213,11 @@ class Woopra_Analytics_Model_Observer extends Varien_Event_Observer
|
|
213 |
if ($cost != 0) {
|
214 |
Mage::getSingleton('core/session')->setData('woopra_checkout_success_profit', round($profit, 2));
|
215 |
}
|
|
|
|
|
|
|
|
|
|
|
216 |
}
|
217 |
}
|
218 |
|
213 |
if ($cost != 0) {
|
214 |
Mage::getSingleton('core/session')->setData('woopra_checkout_success_profit', round($profit, 2));
|
215 |
}
|
216 |
+
if ($order->getCustomerIsGuest()) {
|
217 |
+
Mage::getSingleton('core/session')->setData('woopra_checkout_success_guest_trigger', 1);
|
218 |
+
Mage::getSingleton('core/session')->setData('woopra_checkout_success_guest_name', $order->getCustomerName());
|
219 |
+
Mage::getSingleton('core/session')->setData('woopra_checkout_success_guest_email', $order->getCustomerEmail());
|
220 |
+
}
|
221 |
}
|
222 |
}
|
223 |
|
app/code/community/Woopra/Analytics/etc/config.xml
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
<config>
|
13 |
<modules>
|
14 |
<Woopra_Analytics>
|
15 |
-
<version>1.
|
16 |
</Woopra_Analytics>
|
17 |
</modules>
|
18 |
<global>
|
@@ -59,7 +59,6 @@
|
|
59 |
</woopra_catalog_product_compare_remove_product>
|
60 |
</observers>
|
61 |
</catalog_product_compare_remove_product>
|
62 |
-
|
63 |
<checkout_cart_product_add_after>
|
64 |
<observers>
|
65 |
<woopra_checkout_cart_product_add_after>
|
@@ -114,9 +113,9 @@
|
|
114 |
<tracking_cookie_path></tracking_cookie_path>
|
115 |
<ping>1</ping>
|
116 |
<ping_interval></ping_interval>
|
117 |
-
<download_tracking>
|
118 |
<download_tracking_pause></download_tracking_pause>
|
119 |
-
<outgoing_tracking>
|
120 |
<outgoing_tracking_pause></outgoing_tracking_pause>
|
121 |
<outgoing_ignore_subdomain>1</outgoing_ignore_subdomain>
|
122 |
<hide_campaign></hide_campaign>
|
12 |
<config>
|
13 |
<modules>
|
14 |
<Woopra_Analytics>
|
15 |
+
<version>1.9.0</version>
|
16 |
</Woopra_Analytics>
|
17 |
</modules>
|
18 |
<global>
|
59 |
</woopra_catalog_product_compare_remove_product>
|
60 |
</observers>
|
61 |
</catalog_product_compare_remove_product>
|
|
|
62 |
<checkout_cart_product_add_after>
|
63 |
<observers>
|
64 |
<woopra_checkout_cart_product_add_after>
|
113 |
<tracking_cookie_path></tracking_cookie_path>
|
114 |
<ping>1</ping>
|
115 |
<ping_interval></ping_interval>
|
116 |
+
<download_tracking>0</download_tracking>
|
117 |
<download_tracking_pause></download_tracking_pause>
|
118 |
+
<outgoing_tracking>0</outgoing_tracking>
|
119 |
<outgoing_tracking_pause></outgoing_tracking_pause>
|
120 |
<outgoing_ignore_subdomain>1</outgoing_ignore_subdomain>
|
121 |
<hide_campaign></hide_campaign>
|
app/code/community/Woopra/Analytics/etc/system.xml
CHANGED
@@ -161,7 +161,7 @@
|
|
161 |
</ping_interval>
|
162 |
<download_tracking translate="label">
|
163 |
<label>Download Tracking</label>
|
164 |
-
<comment>Enable/Disable download tracking (Default:
|
165 |
<frontend_type>select</frontend_type>
|
166 |
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
167 |
<sort_order>90</sort_order>
|
@@ -181,7 +181,7 @@
|
|
181 |
</download_tracking_pause>
|
182 |
<outgoing_tracking translate="label">
|
183 |
<label>Outgoing Link Tracking</label>
|
184 |
-
<comment>Enable/Disable outgoing links tracking (Default:
|
185 |
<frontend_type>select</frontend_type>
|
186 |
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
187 |
<sort_order>110</sort_order>
|
161 |
</ping_interval>
|
162 |
<download_tracking translate="label">
|
163 |
<label>Download Tracking</label>
|
164 |
+
<comment>Enable/Disable download tracking (Default: Disable)</comment>
|
165 |
<frontend_type>select</frontend_type>
|
166 |
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
167 |
<sort_order>90</sort_order>
|
181 |
</download_tracking_pause>
|
182 |
<outgoing_tracking translate="label">
|
183 |
<label>Outgoing Link Tracking</label>
|
184 |
+
<comment>Enable/Disable outgoing links tracking (Default: Disable)</comment>
|
185 |
<frontend_type>select</frontend_type>
|
186 |
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
187 |
<sort_order>110</sort_order>
|
app/design/frontend/base/default/template/woopra/checkout.phtml
CHANGED
@@ -1,62 +1,62 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Woopra Module for Magento
|
4 |
-
*
|
5 |
-
* @package Woopra_Analytics
|
6 |
-
* @author K3Live for Woopra
|
7 |
-
* @copyright Copyright (c) 2015 Woopra (http://www.woopra.com/)
|
8 |
-
* @license Open Software License (OSL 3.0)
|
9 |
-
*/
|
10 |
-
?>
|
11 |
-
<?php if($this->getSetting('enabled')) { ?>
|
12 |
-
<?php if ($this->getSetting('woopra_checkout_trigger') == 1) { ?>
|
13 |
-
<!-- Start of Woopra Code -->
|
14 |
-
<script type="text/javascript">
|
15 |
-
//<![CDATA[
|
16 |
-
<?php if(version_compare(Mage::getVersion(), '1.9') > 0) { ?>
|
17 |
-
Checkout.prototype.gotoSection = function (section, reloadProgressBlock) {
|
18 |
-
<?php } else { ?>
|
19 |
-
Checkout.prototype.gotoSection = function (section) {
|
20 |
-
<?php } ?>
|
21 |
-
woopra_action = section;
|
22 |
-
if (woopra_action == '')
|
23 |
-
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutBillingAddress(); ?>';
|
24 |
-
else if (woopra_action == 'billing')
|
25 |
-
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutBillingAddress(); ?>';
|
26 |
-
else if (woopra_action == 'shipping')
|
27 |
-
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutShippingAddress(); ?>';
|
28 |
-
else if (woopra_action == 'shipping_method')
|
29 |
-
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutShippingMethod(); ?>';
|
30 |
-
else if (woopra_action == 'payment')
|
31 |
-
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutPaymentMethod(); ?>';
|
32 |
-
else if (woopra_action == 'review')
|
33 |
-
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutReview(); ?>';
|
34 |
-
try {
|
35 |
-
woopra.track({
|
36 |
-
name: ''+woopra_action+''
|
37 |
-
});
|
38 |
-
} catch(err) { }
|
39 |
-
<?php if(version_compare(Mage::getVersion(), '1.9') > 0) { ?>
|
40 |
-
if (reloadProgressBlock) {
|
41 |
-
this.reloadProgressBlock(this.currentStep);
|
42 |
-
}
|
43 |
-
this.currentStep = section;
|
44 |
-
var sectionElement = $('opc-' + section);
|
45 |
-
sectionElement.addClassName('allow');
|
46 |
-
this.accordion.openSection('opc-' + section);
|
47 |
-
if(!reloadProgressBlock) {
|
48 |
-
this.resetPreviousSteps();
|
49 |
-
}
|
50 |
-
<?php } else { ?>
|
51 |
-
this.currentStep = section;
|
52 |
-
var sectionElement = $('opc-' + section);
|
53 |
-
sectionElement.addClassName('allow');
|
54 |
-
this.accordion.openSection('opc-' + section);
|
55 |
-
this.reloadProgressBlock(section);
|
56 |
-
<?php } ?>
|
57 |
-
};
|
58 |
-
//]]>
|
59 |
-
</script>
|
60 |
-
<!-- End of Woopra Code -->
|
61 |
-
<?php } ?>
|
62 |
<?php } ?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Woopra Module for Magento
|
4 |
+
*
|
5 |
+
* @package Woopra_Analytics
|
6 |
+
* @author K3Live for Woopra
|
7 |
+
* @copyright Copyright (c) 2015 Woopra (http://www.woopra.com/)
|
8 |
+
* @license Open Software License (OSL 3.0)
|
9 |
+
*/
|
10 |
+
?>
|
11 |
+
<?php if($this->getSetting('enabled')) { ?>
|
12 |
+
<?php if ($this->getSetting('woopra_checkout_trigger') == 1) { ?>
|
13 |
+
<!-- Start of Woopra Code -->
|
14 |
+
<script type="text/javascript">
|
15 |
+
//<![CDATA[
|
16 |
+
<?php if(version_compare(Mage::getVersion(), '1.9') > 0) { ?>
|
17 |
+
Checkout.prototype.gotoSection = function (section, reloadProgressBlock) {
|
18 |
+
<?php } else { ?>
|
19 |
+
Checkout.prototype.gotoSection = function (section) {
|
20 |
+
<?php } ?>
|
21 |
+
woopra_action = section;
|
22 |
+
if (woopra_action == '')
|
23 |
+
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutBillingAddress(); ?>';
|
24 |
+
else if (woopra_action == 'billing')
|
25 |
+
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutBillingAddress(); ?>';
|
26 |
+
else if (woopra_action == 'shipping')
|
27 |
+
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutShippingAddress(); ?>';
|
28 |
+
else if (woopra_action == 'shipping_method')
|
29 |
+
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutShippingMethod(); ?>';
|
30 |
+
else if (woopra_action == 'payment')
|
31 |
+
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutPaymentMethod(); ?>';
|
32 |
+
else if (woopra_action == 'review')
|
33 |
+
woopra_action = '<?php echo Mage::helper('woopra')->getCheckoutReview(); ?>';
|
34 |
+
try {
|
35 |
+
woopra.track({
|
36 |
+
name: ''+woopra_action+''
|
37 |
+
});
|
38 |
+
} catch(err) { }
|
39 |
+
<?php if(version_compare(Mage::getVersion(), '1.9') > 0) { ?>
|
40 |
+
if (reloadProgressBlock) {
|
41 |
+
this.reloadProgressBlock(this.currentStep);
|
42 |
+
}
|
43 |
+
this.currentStep = section;
|
44 |
+
var sectionElement = $('opc-' + section);
|
45 |
+
sectionElement.addClassName('allow');
|
46 |
+
this.accordion.openSection('opc-' + section);
|
47 |
+
if(!reloadProgressBlock) {
|
48 |
+
this.resetPreviousSteps();
|
49 |
+
}
|
50 |
+
<?php } else { ?>
|
51 |
+
this.currentStep = section;
|
52 |
+
var sectionElement = $('opc-' + section);
|
53 |
+
sectionElement.addClassName('allow');
|
54 |
+
this.accordion.openSection('opc-' + section);
|
55 |
+
this.reloadProgressBlock(section);
|
56 |
+
<?php } ?>
|
57 |
+
};
|
58 |
+
//]]>
|
59 |
+
</script>
|
60 |
+
<!-- End of Woopra Code -->
|
61 |
+
<?php } ?>
|
62 |
<?php } ?>
|
app/design/frontend/base/default/template/woopra/script.phtml
CHANGED
@@ -22,9 +22,9 @@
|
|
22 |
<?php if ($this->getSetting('tracking_cookie_path') != NULL) { ?> woopra.config('cookie_path', '<?php echo $this->getSetting('tracking_cookie_path'); ?>');<?php echo "\n"; } ?>
|
23 |
<?php if ($this->getSetting('ping') == 0) { ?> woopra.config('ping', false);<?php echo "\n"; } ?>
|
24 |
<?php if ($this->getSetting('ping_interval') != NULL && $this->getSetting('ping') == 1) { ?> woopra.config('ping_interval', <?php echo $this->getSetting('ping_interval'); ?>);<?php echo "\n"; } ?>
|
25 |
-
<?php if ($this->getSetting('download_tracking') ==
|
26 |
<?php if ($this->getSetting('download_tracking_pause') != NULL && $this->getSetting('download_tracking') == 1) { ?> woopra.config('download_pause', <?php echo $this->getSetting('download_tracking_pause'); ?>);<?php echo "\n"; } ?>
|
27 |
-
<?php if ($this->getSetting('outgoing_tracking') ==
|
28 |
<?php if ($this->getSetting('outgoing_tracking_pause') != NULL && $this->getSetting('outgoing_tracking') == 1) { ?> woopra.config('outgoing_pause', <?php echo $this->getSetting('outgoing_tracking_pause'); ?>);<?php echo "\n"; } ?>
|
29 |
<?php if ($this->getSetting('outgoing_ignore_subdomain') == 0) { ?> woopra.config('outgoing_ignore_subdomain', false);<?php echo "\n"; } ?>
|
30 |
<?php if ($this->getSetting('hide_campaign') == 1) { ?> woopra.config('hide_campaign', true);<?php echo "\n"; } ?>
|
@@ -35,6 +35,9 @@
|
|
35 |
<?php if ($this->getSetting('subdomain') != NULL) { ?> woopra.identify('subdomain', '<?php echo $this->getSetting('subdomain'); ?>');<?php echo "\n"; } ?>
|
36 |
<?php if ($this->getSetting('customer_name') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerName(); ?>', '<?php echo $this->getSetting('customer_name'); ?>');<?php echo "\n"; } ?>
|
37 |
<?php if ($this->getSetting('customer_email') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerEmail(); ?>', '<?php echo $this->getSetting('customer_email'); ?>');<?php echo "\n"; } ?>
|
|
|
|
|
|
|
38 |
<?php if ($this->getSetting('customer_company') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerCompany(); ?>', '<?php echo $this->getSetting('customer_company'); ?>');<?php echo "\n"; } ?>
|
39 |
<?php if ($this->getSetting('customer_location') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerLocation(); ?>', '<?php echo $this->getSetting('customer_location'); ?>');<?php echo "\n"; } ?>
|
40 |
<?php if ($this->getSetting('customer_phone') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerPhone(); ?>', '<?php echo $this->getSetting('customer_phone'); ?>');<?php echo "\n"; } ?>
|
@@ -159,7 +162,7 @@
|
|
159 |
product_price: '<?php echo $product_price; ?>',
|
160 |
product_qty: '<?php echo $item->getData('qty_ordered'); ?>'
|
161 |
<?php echo " });\n"; } ?>
|
162 |
-
<?php } }?>
|
163 |
</script>
|
164 |
<?php if($this->getSetting('test')) { ?>
|
165 |
<script type="text/javascript">
|
22 |
<?php if ($this->getSetting('tracking_cookie_path') != NULL) { ?> woopra.config('cookie_path', '<?php echo $this->getSetting('tracking_cookie_path'); ?>');<?php echo "\n"; } ?>
|
23 |
<?php if ($this->getSetting('ping') == 0) { ?> woopra.config('ping', false);<?php echo "\n"; } ?>
|
24 |
<?php if ($this->getSetting('ping_interval') != NULL && $this->getSetting('ping') == 1) { ?> woopra.config('ping_interval', <?php echo $this->getSetting('ping_interval'); ?>);<?php echo "\n"; } ?>
|
25 |
+
<?php if ($this->getSetting('download_tracking') == 1) { ?> woopra.config('download_tracking', true);<?php echo "\n"; } ?>
|
26 |
<?php if ($this->getSetting('download_tracking_pause') != NULL && $this->getSetting('download_tracking') == 1) { ?> woopra.config('download_pause', <?php echo $this->getSetting('download_tracking_pause'); ?>);<?php echo "\n"; } ?>
|
27 |
+
<?php if ($this->getSetting('outgoing_tracking') == 1) { ?> woopra.config('outgoing_tracking', true);<?php echo "\n"; } ?>
|
28 |
<?php if ($this->getSetting('outgoing_tracking_pause') != NULL && $this->getSetting('outgoing_tracking') == 1) { ?> woopra.config('outgoing_pause', <?php echo $this->getSetting('outgoing_tracking_pause'); ?>);<?php echo "\n"; } ?>
|
29 |
<?php if ($this->getSetting('outgoing_ignore_subdomain') == 0) { ?> woopra.config('outgoing_ignore_subdomain', false);<?php echo "\n"; } ?>
|
30 |
<?php if ($this->getSetting('hide_campaign') == 1) { ?> woopra.config('hide_campaign', true);<?php echo "\n"; } ?>
|
35 |
<?php if ($this->getSetting('subdomain') != NULL) { ?> woopra.identify('subdomain', '<?php echo $this->getSetting('subdomain'); ?>');<?php echo "\n"; } ?>
|
36 |
<?php if ($this->getSetting('customer_name') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerName(); ?>', '<?php echo $this->getSetting('customer_name'); ?>');<?php echo "\n"; } ?>
|
37 |
<?php if ($this->getSetting('customer_email') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerEmail(); ?>', '<?php echo $this->getSetting('customer_email'); ?>');<?php echo "\n"; } ?>
|
38 |
+
<?php if ($this->getSetting('woopra_checkout_success_guest_trigger') == 1) { ?>
|
39 |
+
<?php if ($this->getSetting('woopra_checkout_success_guest_name') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerName(); ?>', '<?php echo $this->getSetting('woopra_checkout_success_guest_name'); ?>');<?php echo "\n"; } ?>
|
40 |
+
<?php if ($this->getSetting('woopra_checkout_success_guest_email') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerEmail(); ?>', '<?php echo $this->getSetting('woopra_checkout_success_guest_email'); ?>');<?php echo "\n"; } } ?>
|
41 |
<?php if ($this->getSetting('customer_company') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerCompany(); ?>', '<?php echo $this->getSetting('customer_company'); ?>');<?php echo "\n"; } ?>
|
42 |
<?php if ($this->getSetting('customer_location') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerLocation(); ?>', '<?php echo $this->getSetting('customer_location'); ?>');<?php echo "\n"; } ?>
|
43 |
<?php if ($this->getSetting('customer_phone') != NULL) { ?> woopra.identify('<?php echo Mage::helper('woopra')->getCustomerPhone(); ?>', '<?php echo $this->getSetting('customer_phone'); ?>');<?php echo "\n"; } ?>
|
162 |
product_price: '<?php echo $product_price; ?>',
|
163 |
product_qty: '<?php echo $item->getData('qty_ordered'); ?>'
|
164 |
<?php echo " });\n"; } ?>
|
165 |
+
<?php } } ?>
|
166 |
</script>
|
167 |
<?php if($this->getSetting('test')) { ?>
|
168 |
<script type="text/javascript">
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Woopra_Analytics_Event_And_Visitor_Tracking</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/OSL-3.0">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
@@ -18,11 +18,11 @@ Access custom reports instantly. No more bugging IT. No old-school interfaces. N
|
|
18 |
<br />
|
19 |
<a href="http://www.k3live.com/magento-extensions/magento-woopra-tracking"><img src="http://www.magentocommerce.com/magento-connect/media/catalog/product/w/o/woopra_tracking_5_1_1.png" /></a><br /><br />
|
20 |
Note: This module will not work without a subscription to the <a href="http://www.woopra.com/?woo_campaign=affiliate&woo_medium=referral&woo_source=k3live">Woopra</a> service.</description>
|
21 |
-
<notes>
|
22 |
<authors><author><name>Woopra</name><user>Woopra</user><email>support@woopra.com</email></author><author><name>K3Live</name><user>K3Live</user><email>support@k3live.com</email></author></authors>
|
23 |
-
<date>2015-
|
24 |
-
<time>05:
|
25 |
-
<contents><target name="magecommunity"><dir><dir name="Woopra"><dir name="Analytics"><dir name="Block"><file name="Script.php" hash="
|
26 |
<compatible/>
|
27 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
28 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Woopra_Analytics_Event_And_Visitor_Tracking</name>
|
4 |
+
<version>1.9.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/OSL-3.0">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
18 |
<br />
|
19 |
<a href="http://www.k3live.com/magento-extensions/magento-woopra-tracking"><img src="http://www.magentocommerce.com/magento-connect/media/catalog/product/w/o/woopra_tracking_5_1_1.png" /></a><br /><br />
|
20 |
Note: This module will not work without a subscription to the <a href="http://www.woopra.com/?woo_campaign=affiliate&woo_medium=referral&woo_source=k3live">Woopra</a> service.</description>
|
21 |
+
<notes>Now identifies guest checkouts. Updated download and outgoing tracking defaults.</notes>
|
22 |
<authors><author><name>Woopra</name><user>Woopra</user><email>support@woopra.com</email></author><author><name>K3Live</name><user>K3Live</user><email>support@k3live.com</email></author></authors>
|
23 |
+
<date>2015-07-07</date>
|
24 |
+
<time>05:36:48</time>
|
25 |
+
<contents><target name="magecommunity"><dir><dir name="Woopra"><dir name="Analytics"><dir name="Block"><file name="Script.php" hash="5d001460a81bbf72d1f8642fad375ebb"/></dir><dir name="Helper"><file name="Data.php" hash="de87ef2faeb806905627abb1644be4f6"/></dir><dir name="Model"><file name="Observer.php" hash="5ec7ca1fcb5ebfd6e85b27d77bfee8a3"/></dir><dir name="etc"><file name="config.xml" hash="3ecf83ffe7d9882130bd3c31c1d155d0"/><file name="system.xml" hash="e8b23b75fe6ab03c5e436e3407526fd6"/></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="woopra.xml" hash="d9dc3de2af23a1991ab7785342086d40"/></dir><dir name="template"><dir name="woopra"><file name="script.phtml" hash="4da468761c2439c24801f1a38c40baa9"/><file name="checkout.phtml" hash="b1dd5f2c0af9e973ea3d10a2e479db15"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Woopra_Analytics.xml" hash="6f38d8633187db1ba9584af2341380a4"/></dir></dir></target></contents>
|
26 |
<compatible/>
|
27 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
28 |
</package>
|