Version Notes
Improves tracking of product views and add-to-carts
Download this release
Release Info
Developer | Eduard G. Dumitrescu |
Extension | Intelivemetrics_Unityreports |
Version | 0.7.2 |
Comparing to | |
See all releases |
Code changes from version 0.7.1 to 0.7.2
- app/code/community/Intelivemetrics/Unityreports/Model/Cron/Count.php +7 -1
- app/code/community/Intelivemetrics/Unityreports/Model/Cron/Request.php +15 -0
- app/code/community/Intelivemetrics/Unityreports/Model/Observer.php +4 -4
- app/code/community/Intelivemetrics/Unityreports/Model/Request/ResetCreditmemos.php +53 -0
- app/code/community/Intelivemetrics/Unityreports/Model/Request/ResetInvoices.php +53 -0
- app/code/community/Intelivemetrics/Unityreports/Model/Request/ResetOrders.php +0 -2
- app/code/community/Intelivemetrics/Unityreports/Model/Request/ResetProductCounters.php +54 -0
- app/code/community/Intelivemetrics/Unityreports/Model/Request/ResetProducts.php +0 -1
- app/code/community/Intelivemetrics/Unityreports/etc/config.xml +1 -1
- app/code/community/Intelivemetrics/Unityreports/sql/unityreports_setup/mysql4-upgrade-0.7.1-0.7.2.php +18 -0
- package.xml +5 -5
app/code/community/Intelivemetrics/Unityreports/Model/Cron/Count.php
CHANGED
@@ -47,6 +47,12 @@ class Intelivemetrics_Unityreports_Model_Cron_Count extends Intelivemetrics_Unit
|
|
47 |
'license' => $helper->getLicenseKey()
|
48 |
)
|
49 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
return true;
|
52 |
} catch (Exception $e) {
|
@@ -65,7 +71,7 @@ class Intelivemetrics_Unityreports_Model_Cron_Count extends Intelivemetrics_Unit
|
|
65 |
try {
|
66 |
//get product counters
|
67 |
$prodCountersTbl = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/product_counters');
|
68 |
-
$query = "SELECT *FROM $prodCountersTbl";
|
69 |
$res = Mage::getSingleton('unityreports/utils')->getDb()->query($query);
|
70 |
$i = 0;
|
71 |
$data = null;
|
47 |
'license' => $helper->getLicenseKey()
|
48 |
)
|
49 |
);
|
50 |
+
$helper->debug('Ok - sent '.count($data['products']['data']).' counters');
|
51 |
+
|
52 |
+
//update last_sent_at
|
53 |
+
$prodCountersTbl = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/product_counters');
|
54 |
+
$query = "UPDATE $prodCountersTbl SET last_sent_at=NOW() WHERE last_updated_at>=last_sent_at OR last_sent_at IS NULL";
|
55 |
+
Mage::getSingleton('unityreports/utils')->getDb()->query($query);
|
56 |
|
57 |
return true;
|
58 |
} catch (Exception $e) {
|
71 |
try {
|
72 |
//get product counters
|
73 |
$prodCountersTbl = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/product_counters');
|
74 |
+
$query = "SELECT *FROM $prodCountersTbl WHERE last_updated_at>=last_sent_at OR last_sent_at IS NULL";
|
75 |
$res = Mage::getSingleton('unityreports/utils')->getDb()->query($query);
|
76 |
$i = 0;
|
77 |
$data = null;
|
app/code/community/Intelivemetrics/Unityreports/Model/Cron/Request.php
CHANGED
@@ -16,7 +16,10 @@ class Intelivemetrics_Unityreports_Model_Cron_Request extends Intelivemetrics_Un
|
|
16 |
//action code codes
|
17 |
const ACTION_RESET_ALL = "reset_all";
|
18 |
const ACTION_RESET_PRODUCTS = "reset_products";
|
|
|
19 |
const ACTION_RESET_ORDERS = "reset_orders";
|
|
|
|
|
20 |
const ACTION_RESET_CUSTOMERS = "reset_customers";
|
21 |
const ACTION_RESET_ABCARTS = "reset_abcarts";
|
22 |
const ACTION_STOP_SYNC = "stop_sync";
|
@@ -35,7 +38,10 @@ class Intelivemetrics_Unityreports_Model_Cron_Request extends Intelivemetrics_Un
|
|
35 |
protected $_actions = array(
|
36 |
self::ACTION_RESET_ALL,
|
37 |
self::ACTION_RESET_PRODUCTS,
|
|
|
38 |
self::ACTION_RESET_ORDERS,
|
|
|
|
|
39 |
self::ACTION_RESET_CUSTOMERS,
|
40 |
self::ACTION_RESET_ABCARTS,
|
41 |
self::ACTION_STOP_SYNC,
|
@@ -88,9 +94,18 @@ class Intelivemetrics_Unityreports_Model_Cron_Request extends Intelivemetrics_Un
|
|
88 |
case self::ACTION_RESET_PRODUCTS:
|
89 |
$result = Mage::getModel('unityreports/request_resetProducts')->execute();
|
90 |
break;
|
|
|
|
|
|
|
91 |
case self::ACTION_RESET_ORDERS:
|
92 |
$result = Mage::getModel('unityreports/request_resetOrders')->execute();
|
93 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
case self::ACTION_RESET_CUSTOMERS:
|
95 |
$result = Mage::getModel('unityreports/request_resetCustomers')->execute();
|
96 |
break;
|
16 |
//action code codes
|
17 |
const ACTION_RESET_ALL = "reset_all";
|
18 |
const ACTION_RESET_PRODUCTS = "reset_products";
|
19 |
+
const ACTION_RESET_PRODUCT_COUNTERS = "reset_product_counters";
|
20 |
const ACTION_RESET_ORDERS = "reset_orders";
|
21 |
+
const ACTION_RESET_INVOICES = "reset_invoices";
|
22 |
+
const ACTION_RESET_CREDITMEMOS = "reset_creditmemos";
|
23 |
const ACTION_RESET_CUSTOMERS = "reset_customers";
|
24 |
const ACTION_RESET_ABCARTS = "reset_abcarts";
|
25 |
const ACTION_STOP_SYNC = "stop_sync";
|
38 |
protected $_actions = array(
|
39 |
self::ACTION_RESET_ALL,
|
40 |
self::ACTION_RESET_PRODUCTS,
|
41 |
+
self::ACTION_RESET_PRODUCT_COUNTERS,
|
42 |
self::ACTION_RESET_ORDERS,
|
43 |
+
self::ACTION_RESET_INVOICES,
|
44 |
+
self::ACTION_RESET_CREDITMEMOS,
|
45 |
self::ACTION_RESET_CUSTOMERS,
|
46 |
self::ACTION_RESET_ABCARTS,
|
47 |
self::ACTION_STOP_SYNC,
|
94 |
case self::ACTION_RESET_PRODUCTS:
|
95 |
$result = Mage::getModel('unityreports/request_resetProducts')->execute();
|
96 |
break;
|
97 |
+
case self::ACTION_RESET_PRODUCT_COUNTERS:
|
98 |
+
$result = Mage::getModel('unityreports/request_resetProductCounters')->execute();
|
99 |
+
break;
|
100 |
case self::ACTION_RESET_ORDERS:
|
101 |
$result = Mage::getModel('unityreports/request_resetOrders')->execute();
|
102 |
break;
|
103 |
+
case self::ACTION_RESET_INVOICES:
|
104 |
+
$result = Mage::getModel('unityreports/request_resetInvoices')->execute();
|
105 |
+
break;
|
106 |
+
case self::ACTION_RESET_CREDITMEMOS:
|
107 |
+
$result = Mage::getModel('unityreports/request_resetCreditmemos')->execute();
|
108 |
+
break;
|
109 |
case self::ACTION_RESET_CUSTOMERS:
|
110 |
$result = Mage::getModel('unityreports/request_resetCustomers')->execute();
|
111 |
break;
|
app/code/community/Intelivemetrics/Unityreports/Model/Observer.php
CHANGED
@@ -63,8 +63,8 @@ class Intelivemetrics_Unityreports_Model_Observer {
|
|
63 |
$table = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/product_counters');
|
64 |
$prodKey = 'PROD' . $product->getEntityId();
|
65 |
if (!isset($_SESSION[$prodKey]) || $_SESSION[$prodKey] != 1) {
|
66 |
-
$query = "INSERT INTO $table (product_id,unique_views) VALUES ({$product->getEntityId()},1)
|
67 |
-
ON DUPLICATE KEY UPDATE unique_views = unique_views+1;";
|
68 |
Mage::getSingleton('unityreports/utils')->getDb()->query($query);
|
69 |
$_SESSION[$prodKey] = 1;
|
70 |
|
@@ -88,8 +88,8 @@ class Intelivemetrics_Unityreports_Model_Observer {
|
|
88 |
try {
|
89 |
$product = $observer->getEvent()->getProduct();
|
90 |
$table = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/product_counters');
|
91 |
-
$query = "INSERT INTO $table (product_id,addtocarts) VALUES ({$product->getEntityId()},1)
|
92 |
-
ON DUPLICATE KEY UPDATE addtocarts = addtocarts+1;";
|
93 |
Mage::getSingleton('unityreports/utils')->getDb()->query($query);
|
94 |
//track customer action
|
95 |
$customer = Mage::getModel('unityreports/customer');
|
63 |
$table = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/product_counters');
|
64 |
$prodKey = 'PROD' . $product->getEntityId();
|
65 |
if (!isset($_SESSION[$prodKey]) || $_SESSION[$prodKey] != 1) {
|
66 |
+
$query = "INSERT INTO $table (product_id,unique_views,last_updated_at) VALUES ({$product->getEntityId()},1,NOW())
|
67 |
+
ON DUPLICATE KEY UPDATE unique_views = unique_views+1, last_updated_at=NOW();";
|
68 |
Mage::getSingleton('unityreports/utils')->getDb()->query($query);
|
69 |
$_SESSION[$prodKey] = 1;
|
70 |
|
88 |
try {
|
89 |
$product = $observer->getEvent()->getProduct();
|
90 |
$table = Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/product_counters');
|
91 |
+
$query = "INSERT INTO $table (product_id,addtocarts,last_updated_at) VALUES ({$product->getEntityId()},1,NOW())
|
92 |
+
ON DUPLICATE KEY UPDATE addtocarts = addtocarts+1,last_updated_at=NOW();";
|
93 |
Mage::getSingleton('unityreports/utils')->getDb()->query($query);
|
94 |
//track customer action
|
95 |
$customer = Mage::getModel('unityreports/customer');
|
app/code/community/Intelivemetrics/Unityreports/Model/Request/ResetCreditmemos.php
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Reset synced orders action
|
5 |
+
*
|
6 |
+
* @category Unityreports
|
7 |
+
* @package Intelivemetrics_Unityreports
|
8 |
+
* @copyright Copyright (c) 2014 Intelive Metrics Srl
|
9 |
+
* @author Eduard Gabriel Dumitrescu (balaur@gmail.com)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class Intelivemetrics_Unityreports_Model_Request_ResetCreditmemos extends Intelivemetrics_Unityreports_Model_Request_Base implements Intelivemetrics_Unityreports_Model_Request_Interface {
|
13 |
+
|
14 |
+
public function execute($settings=array()) {
|
15 |
+
Intelivemetrics_Unityreports_Model_Utils::log(__METHOD__);
|
16 |
+
|
17 |
+
$syncActive = Mage::getConfig(Intelivemetrics_Unityreports_Model_Config::XML_GENERAL_STATUS);
|
18 |
+
|
19 |
+
//stop syncing
|
20 |
+
if ($syncActive) {
|
21 |
+
$this->stopSync();
|
22 |
+
}
|
23 |
+
|
24 |
+
//reset
|
25 |
+
$tables = array(
|
26 |
+
Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/creditnotes'),
|
27 |
+
);
|
28 |
+
$db = Mage::getSingleton('unityreports/utils')->getDb();
|
29 |
+
foreach ($tables as $table) {
|
30 |
+
try {
|
31 |
+
$db->query("TRUNCATE $table;");
|
32 |
+
Intelivemetrics_Unityreports_Model_Utils::log("Truncated $table");
|
33 |
+
} catch (Exception $ex) {
|
34 |
+
Intelivemetrics_Unityreports_Model_Utils::log($ex->getMessage());
|
35 |
+
//something went wrong. Stop
|
36 |
+
return false;
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
40 |
+
//start syncing
|
41 |
+
if ($syncActive) {
|
42 |
+
$this->startSync();
|
43 |
+
}
|
44 |
+
|
45 |
+
//alles gut
|
46 |
+
return $out = array(
|
47 |
+
'done' => true,
|
48 |
+
);
|
49 |
+
}
|
50 |
+
|
51 |
+
}
|
52 |
+
|
53 |
+
?>
|
app/code/community/Intelivemetrics/Unityreports/Model/Request/ResetInvoices.php
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Reset synced orders action
|
5 |
+
*
|
6 |
+
* @category Unityreports
|
7 |
+
* @package Intelivemetrics_Unityreports
|
8 |
+
* @copyright Copyright (c) 2014 Intelive Metrics Srl
|
9 |
+
* @author Eduard Gabriel Dumitrescu (balaur@gmail.com)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class Intelivemetrics_Unityreports_Model_Request_ResetInvoices extends Intelivemetrics_Unityreports_Model_Request_Base implements Intelivemetrics_Unityreports_Model_Request_Interface {
|
13 |
+
|
14 |
+
public function execute($settings=array()) {
|
15 |
+
Intelivemetrics_Unityreports_Model_Utils::log(__METHOD__);
|
16 |
+
|
17 |
+
$syncActive = Mage::getConfig(Intelivemetrics_Unityreports_Model_Config::XML_GENERAL_STATUS);
|
18 |
+
|
19 |
+
//stop syncing
|
20 |
+
if ($syncActive) {
|
21 |
+
$this->stopSync();
|
22 |
+
}
|
23 |
+
|
24 |
+
//reset
|
25 |
+
$tables = array(
|
26 |
+
Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/invoices'),
|
27 |
+
);
|
28 |
+
$db = Mage::getSingleton('unityreports/utils')->getDb();
|
29 |
+
foreach ($tables as $table) {
|
30 |
+
try {
|
31 |
+
$db->query("TRUNCATE $table;");
|
32 |
+
Intelivemetrics_Unityreports_Model_Utils::log("Truncated $table");
|
33 |
+
} catch (Exception $ex) {
|
34 |
+
Intelivemetrics_Unityreports_Model_Utils::log($ex->getMessage());
|
35 |
+
//something went wrong. Stop
|
36 |
+
return false;
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
40 |
+
//start syncing
|
41 |
+
if ($syncActive) {
|
42 |
+
$this->startSync();
|
43 |
+
}
|
44 |
+
|
45 |
+
//alles gut
|
46 |
+
return $out = array(
|
47 |
+
'done' => true,
|
48 |
+
);
|
49 |
+
}
|
50 |
+
|
51 |
+
}
|
52 |
+
|
53 |
+
?>
|
app/code/community/Intelivemetrics/Unityreports/Model/Request/ResetOrders.php
CHANGED
@@ -23,8 +23,6 @@ class Intelivemetrics_Unityreports_Model_Request_ResetOrders extends Intelivemet
|
|
23 |
|
24 |
//reset
|
25 |
$tables = array(
|
26 |
-
Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/creditnotes'),
|
27 |
-
Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/invoices'),
|
28 |
Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/orders'),
|
29 |
);
|
30 |
$db = Mage::getSingleton('unityreports/utils')->getDb();
|
23 |
|
24 |
//reset
|
25 |
$tables = array(
|
|
|
|
|
26 |
Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/orders'),
|
27 |
);
|
28 |
$db = Mage::getSingleton('unityreports/utils')->getDb();
|
app/code/community/Intelivemetrics/Unityreports/Model/Request/ResetProductCounters.php
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Reset synced products action
|
5 |
+
*
|
6 |
+
* @category Unityreports
|
7 |
+
* @package Intelivemetrics_Unityreports
|
8 |
+
* @copyright Copyright (c) 2014 Intelive Metrics Srl
|
9 |
+
* @author Eduard Gabriel Dumitrescu (balaur@gmail.com)
|
10 |
+
*/
|
11 |
+
|
12 |
+
|
13 |
+
class Intelivemetrics_Unityreports_Model_Request_ResetProductCounters extends Intelivemetrics_Unityreports_Model_Request_Base implements Intelivemetrics_Unityreports_Model_Request_Interface {
|
14 |
+
|
15 |
+
public function execute($settings=array()) {
|
16 |
+
Intelivemetrics_Unityreports_Model_Utils::log(__METHOD__);
|
17 |
+
|
18 |
+
$syncActive = Mage::getConfig(Intelivemetrics_Unityreports_Model_Config::XML_GENERAL_STATUS);
|
19 |
+
|
20 |
+
//stop syncing
|
21 |
+
if ($syncActive) {
|
22 |
+
$this->stopSync();
|
23 |
+
}
|
24 |
+
|
25 |
+
//reset
|
26 |
+
$tables = array(
|
27 |
+
Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/product_counters'),
|
28 |
+
);
|
29 |
+
$db = Mage::getSingleton('unityreports/utils')->getDb();
|
30 |
+
foreach ($tables as $table) {
|
31 |
+
try {
|
32 |
+
$db->query("TRUNCATE $table;");
|
33 |
+
Intelivemetrics_Unityreports_Model_Utils::log("Truncated $table");
|
34 |
+
} catch (Exception $ex) {
|
35 |
+
Intelivemetrics_Unityreports_Model_Utils::log($ex->getMessage());
|
36 |
+
//something went wrong. Stop
|
37 |
+
return false;
|
38 |
+
}
|
39 |
+
}
|
40 |
+
|
41 |
+
//start syncing
|
42 |
+
if ($syncActive) {
|
43 |
+
$this->startSync();
|
44 |
+
}
|
45 |
+
|
46 |
+
//alles gut
|
47 |
+
return $out = array(
|
48 |
+
'done' => true,
|
49 |
+
);
|
50 |
+
}
|
51 |
+
|
52 |
+
}
|
53 |
+
|
54 |
+
?>
|
app/code/community/Intelivemetrics/Unityreports/Model/Request/ResetProducts.php
CHANGED
@@ -25,7 +25,6 @@ class Intelivemetrics_Unityreports_Model_Request_ResetProducts extends Intelivem
|
|
25 |
//reset
|
26 |
$tables = array(
|
27 |
Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/products'),
|
28 |
-
Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/product_counters'),
|
29 |
);
|
30 |
$db = Mage::getSingleton('unityreports/utils')->getDb();
|
31 |
foreach ($tables as $table) {
|
25 |
//reset
|
26 |
$tables = array(
|
27 |
Intelivemetrics_Unityreports_Model_Utils::getTableName('unityreports/products'),
|
|
|
28 |
);
|
29 |
$db = Mage::getSingleton('unityreports/utils')->getDb();
|
30 |
foreach ($tables as $table) {
|
app/code/community/Intelivemetrics/Unityreports/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Intelivemetrics_Unityreports>
|
5 |
-
<version>0.7.
|
6 |
</Intelivemetrics_Unityreports>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Intelivemetrics_Unityreports>
|
5 |
+
<version>0.7.2</version>
|
6 |
</Intelivemetrics_Unityreports>
|
7 |
</modules>
|
8 |
<global>
|
app/code/community/Intelivemetrics/Unityreports/sql/unityreports_setup/mysql4-upgrade-0.7.1-0.7.2.php
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$installer = $this;
|
3 |
+
|
4 |
+
$installer->startSetup();
|
5 |
+
Mage::log('Running installer '.__FILE__);
|
6 |
+
|
7 |
+
$installer->run("
|
8 |
+
ALTER TABLE `{$this->getTable('unityreports/product_counters')}`
|
9 |
+
ADD COLUMN `last_sent_at` DATETIME NULL AFTER `addtocarts`,
|
10 |
+
ADD COLUMN `last_updated_at` DATETIME NULL AFTER `last_sent_at`;
|
11 |
+
|
12 |
+
ALTER TABLE `{$this->getTable('unityreports/product_counters')}`
|
13 |
+
ADD INDEX `last_sent` (`last_sent_at`),
|
14 |
+
ADD INDEX `updated_at` (`last_updated_at`);
|
15 |
+
");
|
16 |
+
|
17 |
+
|
18 |
+
$installer->endSetup();
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Intelivemetrics_Unityreports</name>
|
4 |
-
<version>0.7.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://choosealicense.com/licenses/apache-2.0/">APACHE</license>
|
7 |
<channel>community</channel>
|
@@ -10,11 +10,11 @@
|
|
10 |
<description>Unityreports brings powerful e-commerce analytics by combining Magento, Google Analytics and Google Adwords data.
|
11 |
http://www.unityreports.com
|
12 |
</description>
|
13 |
-
<notes>
|
14 |
<authors><author><name>Eduard G. Dumitrescu</name><user>bregoiu</user><email>eddie.dumitrescu@gmail.com</email></author></authors>
|
15 |
-
<date>2014-
|
16 |
-
<time>
|
17 |
-
<contents><target name="magecommunity"><dir name="Intelivemetrics"><dir name="Unityreports"><dir name="Block"><dir name="Adminhtml"><dir name="Button"><file name="Test.php" hash="f23e261d8cf7ef8314f121978b3b03d3"/></dir><dir name="Label"><file name="Renderer.php" hash="89a6ec5dddca5fcf86fbe85b83d87650"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="7fe1e1e75ce0aca62eedbe3962389943"/></dir><dir name="Model"><dir name="Admin"><dir name="Status"><file name="Active.php" hash="28d46ddb38425dcdddf34a694fcbcd84"/><dir name="Cron"><file name="Count.php" hash="8f8de0b781e5889c63b508dcba24532b"/><file name="GlobalCounters.php" hash="7b89f230d9a4fbd65bbf1dd87fd2d196"/><file name="Mage.php" hash="922159223ba73f6ecb4cb019595009f4"/><file name="Stat.php" hash="64e4b605214a0a966adada181d413d79"/><file name="Sync.php" hash="ab2313a6949823565001b9787a1a255a"/></dir><file name="Cron.php" hash="2f5e7a78dcdf1f593d239851316787cf"/></dir></dir><file name="Config.php" hash="590dd9e3939f58560d9b004763d48c05"/><dir name="Cron"><file name="Count.php" hash="
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.1.0</min><max>7.0.0</max></php></required></dependencies>
|
20 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Intelivemetrics_Unityreports</name>
|
4 |
+
<version>0.7.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://choosealicense.com/licenses/apache-2.0/">APACHE</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Unityreports brings powerful e-commerce analytics by combining Magento, Google Analytics and Google Adwords data.
|
11 |
http://www.unityreports.com
|
12 |
</description>
|
13 |
+
<notes>Improves tracking of product views and add-to-carts</notes>
|
14 |
<authors><author><name>Eduard G. Dumitrescu</name><user>bregoiu</user><email>eddie.dumitrescu@gmail.com</email></author></authors>
|
15 |
+
<date>2014-11-05</date>
|
16 |
+
<time>15:25:13</time>
|
17 |
+
<contents><target name="magecommunity"><dir name="Intelivemetrics"><dir name="Unityreports"><dir name="Block"><dir name="Adminhtml"><dir name="Button"><file name="Test.php" hash="f23e261d8cf7ef8314f121978b3b03d3"/></dir><dir name="Label"><file name="Renderer.php" hash="89a6ec5dddca5fcf86fbe85b83d87650"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="7fe1e1e75ce0aca62eedbe3962389943"/></dir><dir name="Model"><dir name="Admin"><dir name="Status"><file name="Active.php" hash="28d46ddb38425dcdddf34a694fcbcd84"/><dir name="Cron"><file name="Count.php" hash="8f8de0b781e5889c63b508dcba24532b"/><file name="GlobalCounters.php" hash="7b89f230d9a4fbd65bbf1dd87fd2d196"/><file name="Mage.php" hash="922159223ba73f6ecb4cb019595009f4"/><file name="Stat.php" hash="64e4b605214a0a966adada181d413d79"/><file name="Sync.php" hash="ab2313a6949823565001b9787a1a255a"/></dir><file name="Cron.php" hash="2f5e7a78dcdf1f593d239851316787cf"/></dir></dir><file name="Config.php" hash="590dd9e3939f58560d9b004763d48c05"/><dir name="Cron"><file name="Count.php" hash="e9fb746dabb7a9e2c8433f43fa723df8"/><file name="GlobalCounters.php" hash="c55ce27f8ea8c9a22b22053ae3715bff"/><file name="Request.php" hash="121bce122eb50f72e0d6d4c8a74d4900"/><file name="Sync.php" hash="fb059fcef6b5ae42ec8fe2506197136e"/></dir><file name="Cron.php" hash="51f800a9c3c0ab0acdcda3aa9ba51104"/><file name="Customer.php" hash="c99b23d2ec6ffd8acdcc11cf7ed6421e"/><file name="Observer.php" hash="35631e64a3717973ee6f08b7b6410c70"/><dir name="Request"><file name="Base.php" hash="2c3fea1af836bedb205786d67465b97d"/><file name="Diagnose.php" hash="5b105c38c1e9f241c7868f607b6448f3"/><file name="GetCounters.php" hash="58350a26c70f552349a1eac4a29bb729"/><file name="HandShake.php" hash="8c1fb4cfef7fd9c7fb91ccc2c9503260"/><file name="Interface.php" hash="680707fa0a26ecd7237d116bc0b0a3da"/><file name="ResetAbcarts.php" hash="facdc1c2486398a2a62db126c8518174"/><file name="ResetAll.php" hash="b2533da935c5c66f741490f7f082c8df"/><file name="ResetCreditmemos.php" hash="a199f6f07c67e219d85990a3a08454cc"/><file name="ResetCustomers.php" hash="570aff03d862608cea5e09ded7e7fd9b"/><file name="ResetInvoices.php" hash="7c62cfe07c089b6ca64e32c9f4667297"/><file name="ResetOrders.php" hash="b73a88a0b1bd908c9e9e1d386f23087f"/><file name="ResetProductCounters.php" hash="e84ea87e8c2dcf28189e870c84118317"/><file name="ResetProducts.php" hash="9cfbc9b3f2a1388ef61f0af516ea8e02"/><file name="SetSpeed.php" hash="48496a1971c80fdaa689e0d65d0acd16"/><file name="StartSync.php" hash="30d94be6608c4bce5cebb114ad241fdb"/><file name="StopSync.php" hash="61fb6758c1600eed20c40e4ec28fcef1"/><file name="SyncResult.php" hash="c2f9893e2a083f9c792bc43a212196e4"/></dir><dir name="Resource"><dir name="Config"><file name="Collection.php" hash="dc7cc10daf7e597be061d7bf841d0f66"/></dir><file name="Config.php" hash="e3f733d66219ffc946a1b3cd5eca980d"/><file name="Setup.php" hash="2f7cb85c64bd6103faf9208c7d5f451f"/></dir><dir name="Sync"><file name="Abcart.php" hash="154afdc798017a7d9b041ba397e1b72b"/><file name="Creditnote.php" hash="6485779bff48de00a9ba0960c906cf9f"/><file name="Customer.php" hash="b49c41bf3a310a1b874f0498b4863af7"/><file name="CustomerAction.php" hash="160ace0a2e9fa8e28ce522f0d03db25d"/><file name="Interface.php" hash="d74a42d2d34c34ce8ec3379bb220127f"/><file name="Invoice.php" hash="3fd8fd3caa22f3202facb9c1c002ee32"/><file name="Order.php" hash="00481beb01499353ccec0589178f626a"/><file name="Product.php" hash="e2ccb7f50d2acbaca1220c86d51cca27"/><file name="ProductVariation.php" hash="c3042550b9849335c1af13cc26d61504"/></dir><file name="Sync.php" hash="a2f9ebc7a59f82b5b044d7a2fe4db63e"/><file name="Utils.php" hash="911a0d029646f3c6ed69c812b472afe4"/><file name="Utmz.php" hash="5c3dd712ffba8c7a91641b1aefae47e4"/></dir><dir name="controllers"><file name="IndexController.php" hash="c50f956666fda96b85c09fc6e9ef0506"/></dir><dir name="etc"><file name="adminhtml.xml" hash="aab2ef0e4aedb050d8b60937a085537c"/><file name="config.xml" hash="f30ad974f3042f4ff047d0a8a1013d62"/><file name="system.xml" hash="dd6cee8070b16c894b64f1b7d84a4571"/></dir><dir name="sql"><dir name="unityreports_setup"><file name="mysql4-install-0.6.2.php" hash="f427ceee6b905822efecf50ad81fdbaf"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="2d613c596a55e210ad76b1b17449e82a"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Intelivemetrics_Unityreports.xml" hash="ccb9d92196bbc626b5552746ac3ad08b"/></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.1.0</min><max>7.0.0</max></php></required></dependencies>
|
20 |
</package>
|