Intelivemetrics_Unityreports - Version 0.8.4

Version Notes

Adds defaults on acquisition sources

Download this release

Release Info

Developer Eduard G. Dumitrescu
Extension Intelivemetrics_Unityreports
Version 0.8.4
Comparing to
See all releases


Code changes from version 0.8.3 to 0.8.4

app/code/community/Intelivemetrics/Unityreports/Model/Sync.php CHANGED
@@ -10,8 +10,9 @@
10
  */
11
  class Intelivemetrics_Unityreports_Model_Sync {
12
 
13
- const MAX_SENTS = 3; //quante volte il connettore prova ad inviare i dati
14
  const NOTHING_TO_SYNC = 1;
 
15
 
16
  /**
17
  * Gets a SOAP client
10
  */
11
  class Intelivemetrics_Unityreports_Model_Sync {
12
 
13
+ const MAX_SENTS = 3; //how many times the connector trys sending the data
14
  const NOTHING_TO_SYNC = 1;
15
+ CONST CHANNEL_UNTRACKED = '(untracked)';//default value for acquisition
16
 
17
  /**
18
  * Gets a SOAP client
app/code/community/Intelivemetrics/Unityreports/Model/Sync/Creditnote.php CHANGED
@@ -87,6 +87,7 @@ class Intelivemetrics_Unityreports_Model_Sync_Creditnote extends Intelivemetrics
87
  $order_fields = array(
88
  'entity_name' => self::ENTITY_TYPE,
89
  'id' => $creditnote->getId(),
 
90
  'increment_id' => $creditnote->getIncrementId(),
91
  'order_id' => $creditnote->getOrderId(),
92
  'grand_total' => $attributes['grand_total'],
87
  $order_fields = array(
88
  'entity_name' => self::ENTITY_TYPE,
89
  'id' => $creditnote->getId(),
90
+ 'store_id' => $creditnote->getStoreId(),
91
  'increment_id' => $creditnote->getIncrementId(),
92
  'order_id' => $creditnote->getOrderId(),
93
  'grand_total' => $attributes['grand_total'],
app/code/community/Intelivemetrics/Unityreports/Model/Sync/Customer.php CHANGED
@@ -8,14 +8,12 @@
8
  * @copyright Copyright (c) 2014 Intelive Metrics Srl
9
  * @author Eduard Gabriel Dumitrescu (balaur@gmail.com)
10
  */
11
-
12
-
13
  class Intelivemetrics_Unityreports_Model_Sync_Customer extends Intelivemetrics_Unityreports_Model_Sync implements Intelivemetrics_Unityreports_Model_Sync_Interface {
14
 
15
  const ENTITY_TYPE = 'customer';
16
 
17
  protected $_groups = array();
18
-
19
  protected function _getGroupCode($groupId) {
20
  if (!isset($this->_groups[$groupId])) {
21
  $group = Mage::getModel('customer/group')->load($groupId);
@@ -44,7 +42,7 @@ class Intelivemetrics_Unityreports_Model_Sync_Customer extends Intelivemetrics_U
44
  }
45
  } catch (Exception $ex) {
46
  Mage::helper('unityreports')->debug($ex->getMessage(), Zend_Log::ERR);
47
- Mage::helper('unityreports')->debug('FILE: ' . __FILE__.'LINE: ' . __LINE__);
48
  }
49
  }
50
 
@@ -65,7 +63,7 @@ class Intelivemetrics_Unityreports_Model_Sync_Customer extends Intelivemetrics_U
65
  $helper->debug("Sincronizzati $counter clienti");
66
  } catch (Exception $ex) {
67
  $helper->debug($ex->getMessage(), Zend_Log::ERR);
68
- $helper->debug('FILE: ' . __FILE__.'LINE: ' . __LINE__);
69
  }
70
  }
71
 
@@ -86,7 +84,7 @@ class Intelivemetrics_Unityreports_Model_Sync_Customer extends Intelivemetrics_U
86
  ->getCollection()
87
  ->addAttributeToSelect('*');
88
  $collection->getSelect()
89
- ->joinLeft(
90
  array('campaigns' => $campaignsTable), "entity_id=campaigns.id AND campaigns.type='customer'", array('source', 'medium', 'content', 'campaign')
91
  )
92
  ->where("entity_id NOT IN (SELECT customer_id FROM $table WHERE synced=1 OR sents>={$this->getMaxSents()} OR TIMESTAMPDIFF(MINUTE,last_sent_at,'{$now}')<60)")
@@ -104,15 +102,16 @@ class Intelivemetrics_Unityreports_Model_Sync_Customer extends Intelivemetrics_U
104
  $customerData = array(
105
  'entity_name' => self::ENTITY_TYPE,
106
  'id' => $customer->getId(),
 
107
  'name' => $customer->getName(),
108
  'dob' => $customer->getDob(),
109
  'email' => $customer->getEmail(),
110
  'group' => $this->_getGroupCode($customer->getGroupId()),
111
  'gender' => $customer->getGender(),
112
- 'source' => $customer->getSource(),
113
- 'medium' => $customer->getMedium(),
114
- 'content' => $customer->getContent(),
115
- 'campaign' => $customer->getCampaign(),
116
  'created_at' => $customer->getCreatedAt(),
117
  );
118
 
@@ -132,7 +131,7 @@ class Intelivemetrics_Unityreports_Model_Sync_Customer extends Intelivemetrics_U
132
  return $data;
133
  } catch (Exception $ex) {
134
  $helper->debug($ex->getMessage(), Zend_Log::ERR);
135
- $helper->debug('FILE: ' . __FILE__.'LINE: ' . __LINE__);
136
  return null;
137
  }
138
  }
8
  * @copyright Copyright (c) 2014 Intelive Metrics Srl
9
  * @author Eduard Gabriel Dumitrescu (balaur@gmail.com)
10
  */
 
 
11
  class Intelivemetrics_Unityreports_Model_Sync_Customer extends Intelivemetrics_Unityreports_Model_Sync implements Intelivemetrics_Unityreports_Model_Sync_Interface {
12
 
13
  const ENTITY_TYPE = 'customer';
14
 
15
  protected $_groups = array();
16
+
17
  protected function _getGroupCode($groupId) {
18
  if (!isset($this->_groups[$groupId])) {
19
  $group = Mage::getModel('customer/group')->load($groupId);
42
  }
43
  } catch (Exception $ex) {
44
  Mage::helper('unityreports')->debug($ex->getMessage(), Zend_Log::ERR);
45
+ Mage::helper('unityreports')->debug('FILE: ' . __FILE__ . 'LINE: ' . __LINE__);
46
  }
47
  }
48
 
63
  $helper->debug("Sincronizzati $counter clienti");
64
  } catch (Exception $ex) {
65
  $helper->debug($ex->getMessage(), Zend_Log::ERR);
66
+ $helper->debug('FILE: ' . __FILE__ . 'LINE: ' . __LINE__);
67
  }
68
  }
69
 
84
  ->getCollection()
85
  ->addAttributeToSelect('*');
86
  $collection->getSelect()
87
+ ->joinLeft(
88
  array('campaigns' => $campaignsTable), "entity_id=campaigns.id AND campaigns.type='customer'", array('source', 'medium', 'content', 'campaign')
89
  )
90
  ->where("entity_id NOT IN (SELECT customer_id FROM $table WHERE synced=1 OR sents>={$this->getMaxSents()} OR TIMESTAMPDIFF(MINUTE,last_sent_at,'{$now}')<60)")
102
  $customerData = array(
103
  'entity_name' => self::ENTITY_TYPE,
104
  'id' => $customer->getId(),
105
+ 'store_id' => $customer->getStoreId(),
106
  'name' => $customer->getName(),
107
  'dob' => $customer->getDob(),
108
  'email' => $customer->getEmail(),
109
  'group' => $this->_getGroupCode($customer->getGroupId()),
110
  'gender' => $customer->getGender(),
111
+ 'source' => (empty($customer->getSource()) ? self::CHANNEL_UNTRACKED : $customer->getSource()),
112
+ 'medium' => (empty($customer->getMedium()) ? self::CHANNEL_UNTRACKED : $customer->getMedium()),
113
+ 'content' => (empty($customer->getContent()) ? self::CHANNEL_UNTRACKED : $customer->getContent()),
114
+ 'campaign' => (empty($customer->getCampaign()) ? self::CHANNEL_UNTRACKED : $customer->getCampaign()),
115
  'created_at' => $customer->getCreatedAt(),
116
  );
117
 
131
  return $data;
132
  } catch (Exception $ex) {
133
  $helper->debug($ex->getMessage(), Zend_Log::ERR);
134
+ $helper->debug('FILE: ' . __FILE__ . 'LINE: ' . __LINE__);
135
  return null;
136
  }
137
  }
app/code/community/Intelivemetrics/Unityreports/Model/Sync/Invoice.php CHANGED
@@ -101,6 +101,7 @@ class Intelivemetrics_Unityreports_Model_Sync_Invoice extends Intelivemetrics_Un
101
  $order_fields = array(
102
  'entity_name' => self::ENTITY_TYPE,
103
  'id' => $invoice->getId(),
 
104
  'increment_id' => $invoice->getIncrementId(),
105
  'order_id' => $invoice->getOrderId(),
106
  'grand_total' => $attributes['grand_total'],
101
  $order_fields = array(
102
  'entity_name' => self::ENTITY_TYPE,
103
  'id' => $invoice->getId(),
104
+ 'store_id' => $invoice->getStoreId(),
105
  'increment_id' => $invoice->getIncrementId(),
106
  'order_id' => $invoice->getOrderId(),
107
  'grand_total' => $attributes['grand_total'],
app/code/community/Intelivemetrics/Unityreports/Model/Sync/Order.php CHANGED
@@ -116,7 +116,7 @@ class Intelivemetrics_Unityreports_Model_Sync_Order extends Intelivemetrics_Unit
116
  'store_id' => $attributes['store_id'],
117
  'customer_id' => $attributes['customer_id'],
118
  'customer_email' => $attributes['customer_email'],
119
- 'customer_name' => $attributes['customer_firstname'].' '.$attributes['customer_lastname'],
120
  'customer_group' => $this->_getGroupCode($attributes['group_id']),
121
  'grand_total' => $attributes['grand_total'],
122
  'shipping_amount' => $attributes['shipping_amount'],
@@ -131,11 +131,11 @@ class Intelivemetrics_Unityreports_Model_Sync_Order extends Intelivemetrics_Unit
131
  'status' => $attributes['status'],
132
  'state' => $attributes['state'],
133
  'shipping_description' => $attributes['shipping_description'],
134
- 'source' => $attributes['source'],
135
- 'medium' => $attributes['medium'],
136
- 'content' => $attributes['content'],
137
- 'campaign' => $attributes['campaign'],
138
- 'payment_method' => (is_object($order->getPayment())?$order->getPayment()->getMethod():'unknown')
139
  );
140
 
141
  // indirizzo di spedizione
@@ -223,13 +223,14 @@ class Intelivemetrics_Unityreports_Model_Sync_Order extends Intelivemetrics_Unit
223
  }
224
  $item_arr['options'][] = $option;
225
  }
226
-
227
  //add custom prod attributes
228
  if (is_array($attribs) && count($attribs) > 0) {
229
  foreach ($attribs as $_code => $_id) {
230
  $_value = ($product->getAttributeText($_code) ? $product->getAttributeText($_code) : $product->getData($_code));
231
- if(!$_value) continue;
232
-
 
233
  $item_arr['options'][] = array(
234
  'attribute_id' => $_id,
235
  'label' => $_code,
116
  'store_id' => $attributes['store_id'],
117
  'customer_id' => $attributes['customer_id'],
118
  'customer_email' => $attributes['customer_email'],
119
+ 'customer_name' => $attributes['customer_firstname'] . ' ' . $attributes['customer_lastname'],
120
  'customer_group' => $this->_getGroupCode($attributes['group_id']),
121
  'grand_total' => $attributes['grand_total'],
122
  'shipping_amount' => $attributes['shipping_amount'],
131
  'status' => $attributes['status'],
132
  'state' => $attributes['state'],
133
  'shipping_description' => $attributes['shipping_description'],
134
+ 'source' => (empty($attributes['source']) ? self::CHANNEL_UNTRACKED : $attributes['source']),
135
+ 'medium' => (empty($attributes['medium']) ? self::CHANNEL_UNTRACKED : $attributes['medium']),
136
+ 'content' => (empty($attributes['content']) ? self::CHANNEL_UNTRACKED : $attributes['content']),
137
+ 'campaign' => (empty($attributes['campaign']) ? self::CHANNEL_UNTRACKED : $attributes['campaign']),
138
+ 'payment_method' => (is_object($order->getPayment()) ? $order->getPayment()->getMethod() : 'unknown')
139
  );
140
 
141
  // indirizzo di spedizione
223
  }
224
  $item_arr['options'][] = $option;
225
  }
226
+
227
  //add custom prod attributes
228
  if (is_array($attribs) && count($attribs) > 0) {
229
  foreach ($attribs as $_code => $_id) {
230
  $_value = ($product->getAttributeText($_code) ? $product->getAttributeText($_code) : $product->getData($_code));
231
+ if (!$_value)
232
+ continue;
233
+
234
  $item_arr['options'][] = array(
235
  'attribute_id' => $_id,
236
  'label' => $_code,
app/code/community/Intelivemetrics/Unityreports/Model/Utmz.php CHANGED
@@ -28,14 +28,28 @@ class Intelivemetrics_Unityreports_Model_Utmz {
28
  }
29
 
30
  //Grab utmz cookie if it exists
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  private function _set_utmz() {
32
- if (isset($_COOKIE['__utmz'])) {
33
- $this->utmz = $_COOKIE['__utmz'];
34
- $this->_parse_utmz();
35
- } elseif (isset($_COOKIE['__utmza'])) {
36
  //this is set by the utmz-aternative.js script
37
  $this->utmz = $_COOKIE['__utmza'];
38
  $this->_parse_utmza();
 
 
 
39
  } else
40
  return false;
41
  }
@@ -83,6 +97,13 @@ class Intelivemetrics_Unityreports_Model_Utmz {
83
  //do nothing
84
  }
85
  }
 
 
 
 
 
 
 
86
  }
87
 
88
  private function _parse_utmza() {
28
  }
29
 
30
  //Grab utmz cookie if it exists
31
+ // private function _set_utmz() {
32
+ // if (isset($_COOKIE['__utmz'])) {
33
+ // $this->utmz = $_COOKIE['__utmz'];
34
+ // $this->_parse_utmz();
35
+ // } elseif (isset($_COOKIE['__utmza'])) {
36
+ // //this is set by the utmz-aternative.js script
37
+ // $this->utmz = $_COOKIE['__utmza'];
38
+ // $this->_parse_utmza();
39
+ // } else
40
+ // return false;
41
+ // }
42
+
43
+ //Grab utmz cookie if it exists
44
+ //precedence is given to utmza
45
  private function _set_utmz() {
46
+ if (isset($_COOKIE['__utmza'])) {
 
 
 
47
  //this is set by the utmz-aternative.js script
48
  $this->utmz = $_COOKIE['__utmza'];
49
  $this->_parse_utmza();
50
+ }elseif (isset($_COOKIE['__utmz'])) {
51
+ $this->utmz = $_COOKIE['__utmz'];
52
+ $this->_parse_utmz();
53
  } else
54
  return false;
55
  }
97
  //do nothing
98
  }
99
  }
100
+
101
+ //THIS was added in order to support utmz that only comes with gclid data
102
+ if($this->utmz_gclid){
103
+ if(!$this->utmz_source) $this->utmz_source='google';
104
+ if(!$this->utmz_campaign) $this->utmz_campaign='(not set)';
105
+ if(!$this->utmz_medium) $this->utmz_source='cpc';
106
+ }
107
  }
108
 
109
  private function _parse_utmza() {
js/intelivemetrics/unityreports/utmz-alternative.js CHANGED
@@ -1,53 +1,60 @@
1
- /**
2
- * This script provides an alternative method for creating an _utmz cookie
3
- * when switching to universal analytics
4
- *
5
- * @category Unityreports
6
- * @package Intelivemetrics_Unityreports
7
- * @copyright Copyright (c) 2014 Intelive Metrics Srl
8
- * @author Eduard Gabriel Dumitrescu (balaur@gmail.com)
9
- */
10
- var Qs = function () {
11
- // This function is anonymous, is executed immediately and
12
- // the return value is assigned to QueryString!
13
- var query_string = {};
14
- var query = window.location.search.substring(1);
15
- var vars = query.split("&");
16
- for (var i = 0; i < vars.length; i++) {
17
- var pair = vars[i].split("=");
18
- // If first entry with this name
19
- if (typeof query_string[pair[0]] === "undefined") {
20
- query_string[pair[0]] = pair[1];
21
- // If second entry with this name
22
- } else if (typeof query_string[pair[0]] === "string") {
23
- var arr = [query_string[pair[0]], pair[1]];
24
- query_string[pair[0]] = arr;
25
- // If third or later entry with this name
26
- } else {
27
- query_string[pair[0]].push(pair[1]);
28
- }
29
- }
30
- return query_string;
31
- }();
32
-
33
- //utm_campaign=app_listing&utm_medium=referral&utm_source=ga_partner_gallery
34
- var Utmza = function (domain) {
35
- var c = Qs.utm_campaign || null,
36
- s = Qs.utm_source || null,
37
- m = Qs.utm_medium || null,
38
- j = [],
39
- expires = new Date(),
40
- cookie = '__utmza'
41
- ;
42
- domain = domain || window.location.hostname;
43
-
44
- if (c) j.push('c=' + c);
45
- if (s) j.push('s=' + s);
46
- if (m) j.push('m=' + m);
47
-
48
- if(j.length > 0){
49
- //create top level cookie
50
- expires.setTime(expires.getTime() + 1000*60*60*24*365); // (1 years)
51
- document.cookie = cookie + "=" + j.join('|') + "; expires=" + expires.toGMTString() + "; domain=" + domain + "; path=/";
52
- }
53
- }();
 
 
 
 
 
 
 
1
+ /**
2
+ * This script provides an alternative method for creating an _utmz cookie
3
+ * when switching to universal analytics
4
+ *
5
+ * @category Unityreports
6
+ * @package Intelivemetrics_Unityreports
7
+ * @copyright Copyright (c) 2014 Intelive Metrics Srl
8
+ * @author Eduard Gabriel Dumitrescu (balaur@gmail.com)
9
+ */
10
+ var Qs = function () {
11
+ // This function is anonymous, is executed immediately and
12
+ // the return value is assigned to QueryString!
13
+ var query_string = {};
14
+ var query = window.location.search.substring(1);
15
+ var vars = query.split("&");
16
+ for (var i = 0; i < vars.length; i++) {
17
+ var pair = vars[i].split("=");
18
+ // If first entry with this name
19
+ if (typeof query_string[pair[0]] === "undefined") {
20
+ query_string[pair[0]] = pair[1];
21
+ // If second entry with this name
22
+ } else if (typeof query_string[pair[0]] === "string") {
23
+ var arr = [query_string[pair[0]], pair[1]];
24
+ query_string[pair[0]] = arr;
25
+ // If third or later entry with this name
26
+ } else {
27
+ query_string[pair[0]].push(pair[1]);
28
+ }
29
+ }
30
+ return query_string;
31
+ }();
32
+
33
+ //utm_campaign=app_listing&utm_medium=referral&utm_source=ga_partner_gallery
34
+ var Utmza = function (domain) {
35
+ var c = Qs.utm_campaign || null,
36
+ s = Qs.utm_source || null,
37
+ m = Qs.utm_medium || null,
38
+ j = [],
39
+ expires = new Date(),
40
+ cookie = '__utmza'
41
+ ;
42
+ domain = domain || window.location.hostname;
43
+
44
+ /* If URL parameters contain 'gclid=', tag as Google CPC */
45
+ if (window.location.search.indexOf('gclid=')) {
46
+ c = '(not set)';
47
+ s = 'google';
48
+ m = 'cpc';
49
+ }
50
+
51
+ if (c) j.push('c=' + c);
52
+ if (s) j.push('s=' + s);
53
+ if (m) j.push('m=' + m);
54
+
55
+ if(j.length > 0){
56
+ //create top level cookie
57
+ expires.setTime(expires.getTime() + 1000*60*60*24*365); // (1 years)
58
+ document.cookie = cookie + "=" + j.join('|') + "; expires=" + expires.toGMTString() + "; domain=" + domain + "; path=/";
59
+ }
60
+ }();
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Intelivemetrics_Unityreports</name>
4
- <version>0.8.3</version>
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.&#xD;
11
  http://www.unityreports.com&#xD;
12
  </description>
13
- <notes>Fixes possible loop error</notes>
14
  <authors><author><name>Eduard G. Dumitrescu</name><user>bregoiu</user><email>eddie.dumitrescu@gmail.com</email></author></authors>
15
- <date>2016-02-11</date>
16
- <time>08:48:18</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="abe7ccd922f31513e0b78e51f3501cb7"/></dir><dir name="Label"><file name="Renderer.php" hash="89a6ec5dddca5fcf86fbe85b83d87650"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="28ec3fc4be05e608c27da2722b75d2d1"/></dir><dir name="Model"><dir name="Admin"><dir name="Status"><file name="Active.php" hash="28d46ddb38425dcdddf34a694fcbcd84"/><file name="Attributes.php" hash="88821a4f01364ff8223409c33a0b6167"/><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="438fdf0f97428fed2cf30fe91f96f882"/><dir name="Sync"><file name="Customers.php" hash="1446fca53ddd58161169127191c400d6"/><file name="Invoices.php" hash="744b4b376c0e9bbfef8dcaef4e3e9118"/><file name="Orders.php" hash="37374a9ef8d14ecaf4c14aea024db042"/><file name="Products.php" hash="e8372e002264bfcbb8fc8d07e911c13e"/></dir><file name="SyncPercent.php" hash="a8184ca9718a8e72a14c69067dc867bf"/><file name="UseShipping.php" hash="4fa20aab09e013955dc989595ebf0aab"/></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="d0d5c8e1b3ba294ef4a628148f4eff3f"/><file name="Stock.php" hash="b2e4edf9c16b25b57d224ff41255d249"/><file name="Sync.php" hash="7ee01469a97d64392e0d45df462af342"/></dir><file name="Cron.php" hash="51f800a9c3c0ab0acdcda3aa9ba51104"/><file name="Customer.php" hash="c99b23d2ec6ffd8acdcc11cf7ed6421e"/><file name="Observer.php" hash="6d29e3b6e3b740f8fcdbaf8f78feabba"/><dir name="Request"><file name="Base.php" hash="2c3fea1af836bedb205786d67465b97d"/><file name="Diagnose.php" hash="5e8525e5392c705660e800faf9b3e057"/><file name="Dq.php" hash="813628e7a57c45f37f83024cce909bdb"/><file name="GetCounters.php" hash="58350a26c70f552349a1eac4a29bb729"/><file name="HandShake.php" hash="904a425860be3685d747503367cc2b11"/><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="8c941a318ee81c497656c245cce10779"/><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="d5869cc321f5f5c5b6ad9f103aab7bc2"/><file name="Order.php" hash="5cf743f522fe085b55fbc9f22124d3d5"/><file name="Product.php" hash="991c961a389a1046c7262abae5bba575"/><file name="ProductVariation.php" hash="c3042550b9849335c1af13cc26d61504"/></dir><file name="Sync.php" hash="8aa9f12fbe6fde9304046ff332ecfda9"/><file name="Utils.php" hash="a77825d378f0692900f396288c727358"/><file name="Utmz.php" hash="b3b1d805e042142f8d713e253836b1b1"/></dir><dir name="controllers"><file name="IndexController.php" hash="d26a260da822058d9576e851fee4be64"/><file name="PublicController.php" hash="49b73f02a1ed29bba55490f82af75608"/><file name="TestController.php" hash="1aa552084dd6f585c2bb49b9ea13eeb5"/></dir><dir name="etc"><file name="adminhtml.xml" hash="aab2ef0e4aedb050d8b60937a085537c"/><file name="config.xml" hash="761f55f7267dfb0f0a67061bbd43400a"/><file name="system.xml" hash="fd8a468b809f412444eeab49868d8235"/></dir><dir name="sql"><dir name="unityreports_setup"><file name="mysql4-install-0.7.2.php" hash="15298718b85d6aa3bec4e1220f804d8f"/><file name="mysql4-install-0.7.3.php" hash="15298718b85d6aa3bec4e1220f804d8f"/><file name="mysql4-upgrade-0.6.2-0.7.2.php" hash="7c1abd7bed806f811ffedf9cdb2c0cc0"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="fcbc4f1c8b216548ee212855142857f8"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Intelivemetrics_Unityreports.xml" hash="ccb9d92196bbc626b5552746ac3ad08b"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="unityreports.xml" hash="1378f49dd55356156426785b3d1e3eab"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="intelivemetrics"><dir name="unityreports"><file name="utmz-alternative.js" hash="20f145b83473ec9c13b738b3f15ee969"/></dir></dir></dir></target></contents>
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.8.4</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.&#xD;
11
  http://www.unityreports.com&#xD;
12
  </description>
13
+ <notes>Adds defaults on acquisition sources</notes>
14
  <authors><author><name>Eduard G. Dumitrescu</name><user>bregoiu</user><email>eddie.dumitrescu@gmail.com</email></author></authors>
15
+ <date>2016-06-23</date>
16
+ <time>08:20:19</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="abe7ccd922f31513e0b78e51f3501cb7"/></dir><dir name="Label"><file name="Renderer.php" hash="89a6ec5dddca5fcf86fbe85b83d87650"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="28ec3fc4be05e608c27da2722b75d2d1"/></dir><dir name="Model"><dir name="Admin"><dir name="Status"><file name="Active.php" hash="28d46ddb38425dcdddf34a694fcbcd84"/><file name="Attributes.php" hash="88821a4f01364ff8223409c33a0b6167"/><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="438fdf0f97428fed2cf30fe91f96f882"/><dir name="Sync"><file name="Customers.php" hash="1446fca53ddd58161169127191c400d6"/><file name="Invoices.php" hash="744b4b376c0e9bbfef8dcaef4e3e9118"/><file name="Orders.php" hash="37374a9ef8d14ecaf4c14aea024db042"/><file name="Products.php" hash="e8372e002264bfcbb8fc8d07e911c13e"/></dir><file name="SyncPercent.php" hash="a8184ca9718a8e72a14c69067dc867bf"/><file name="UseShipping.php" hash="4fa20aab09e013955dc989595ebf0aab"/></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="d0d5c8e1b3ba294ef4a628148f4eff3f"/><file name="Stock.php" hash="b2e4edf9c16b25b57d224ff41255d249"/><file name="Sync.php" hash="7ee01469a97d64392e0d45df462af342"/></dir><file name="Cron.php" hash="51f800a9c3c0ab0acdcda3aa9ba51104"/><file name="Customer.php" hash="c99b23d2ec6ffd8acdcc11cf7ed6421e"/><file name="Observer.php" hash="6d29e3b6e3b740f8fcdbaf8f78feabba"/><dir name="Request"><file name="Base.php" hash="2c3fea1af836bedb205786d67465b97d"/><file name="Diagnose.php" hash="5e8525e5392c705660e800faf9b3e057"/><file name="Dq.php" hash="813628e7a57c45f37f83024cce909bdb"/><file name="GetCounters.php" hash="58350a26c70f552349a1eac4a29bb729"/><file name="HandShake.php" hash="904a425860be3685d747503367cc2b11"/><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="8c941a318ee81c497656c245cce10779"/><file name="Creditnote.php" hash="770d13c3428ad37eeb7d570094f4f011"/><file name="Customer.php" hash="f52cdd91bf0b6538da091e6e816c20ec"/><file name="CustomerAction.php" hash="160ace0a2e9fa8e28ce522f0d03db25d"/><file name="Interface.php" hash="d74a42d2d34c34ce8ec3379bb220127f"/><file name="Invoice.php" hash="46b629b3f0d100bdb19976a421622fa7"/><file name="Order.php" hash="2ac449b1da1d7af9e8c4f8620f746bc2"/><file name="Product.php" hash="991c961a389a1046c7262abae5bba575"/><file name="ProductVariation.php" hash="c3042550b9849335c1af13cc26d61504"/></dir><file name="Sync.php" hash="e715a7b33cf3ba24a7607f28e7fe7534"/><file name="Utils.php" hash="a77825d378f0692900f396288c727358"/><file name="Utmz.php" hash="09a88d83e280967a71a716ae58aff41d"/></dir><dir name="controllers"><file name="IndexController.php" hash="d26a260da822058d9576e851fee4be64"/><file name="PublicController.php" hash="49b73f02a1ed29bba55490f82af75608"/><file name="TestController.php" hash="1aa552084dd6f585c2bb49b9ea13eeb5"/></dir><dir name="etc"><file name="adminhtml.xml" hash="aab2ef0e4aedb050d8b60937a085537c"/><file name="config.xml" hash="761f55f7267dfb0f0a67061bbd43400a"/><file name="system.xml" hash="fd8a468b809f412444eeab49868d8235"/></dir><dir name="sql"><dir name="unityreports_setup"><file name="mysql4-install-0.7.2.php" hash="15298718b85d6aa3bec4e1220f804d8f"/><file name="mysql4-install-0.7.3.php" hash="15298718b85d6aa3bec4e1220f804d8f"/><file name="mysql4-upgrade-0.6.2-0.7.2.php" hash="7c1abd7bed806f811ffedf9cdb2c0cc0"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="fcbc4f1c8b216548ee212855142857f8"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Intelivemetrics_Unityreports.xml" hash="ccb9d92196bbc626b5552746ac3ad08b"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="unityreports.xml" hash="1378f49dd55356156426785b3d1e3eab"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="intelivemetrics"><dir name="unityreports"><file name="utmz-alternative.js" hash="1d19f782d1504e70b8337bbc2308e041"/></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.1.0</min><max>7.0.0</max></php></required></dependencies>
20
  </package>