Converdo_Analytics - Version 2.1.6.49

Version Notes

Minor improvements

Download this release

Release Info

Developer Roeland van Oostenbrugge
Extension Converdo_Analytics
Version 2.1.6.49
Comparing to
See all releases


Code changes from version 2.1.6.18 to 2.1.6.49

app/code/community/Converdo/Common/Config/Configuration.php CHANGED
@@ -13,7 +13,7 @@ class Configuration
13
  *
14
  * @var string
15
  */
16
- const VERSION = '2.1.6.18';
17
 
18
  /**
19
  * The Converdo URL.
@@ -55,16 +55,9 @@ class Configuration
55
  */
56
  public function __construct()
57
  {
58
- if (defined('MAGENTO_ROOT')) {
59
- $this->platform = cvd_app(\Converdo\Magento\Config\Configuration::class);
60
- $this->basePath = MAGENTO_ROOT;
61
- $this->path = realpath($this->basePath . '/app/code/community/Converdo');
62
- }
63
-
64
- if (defined('WC_ABSPATH')) {
65
- // TODO: WooCommerce
66
- }
67
-
68
 
69
  $this->resolveBindings();
70
 
13
  *
14
  * @var string
15
  */
16
+ const VERSION = '2.1.6.49';
17
 
18
  /**
19
  * The Converdo URL.
55
  */
56
  public function __construct()
57
  {
58
+ $this->platform = cvd_app(\Converdo\Magento\Config\Configuration::class);
59
+ $this->basePath = MAGENTO_ROOT;
60
+ $this->path = realpath($this->basePath . '/app/code/community/Converdo');
 
 
 
 
 
 
 
61
 
62
  $this->resolveBindings();
63
 
app/code/community/Converdo/Common/Query/Models/Contracts/EcommerceItemInterface.php CHANGED
@@ -153,6 +153,21 @@ interface EcommerceItemInterface
153
  */
154
  public function getType();
155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
  /**
157
  * Sets whether the product is in stock.
158
  *
153
  */
154
  public function getType();
155
 
156
+ /**
157
+ * Sets the product attribute set.
158
+ *
159
+ * @param string $attribute
160
+ * @return $this
161
+ */
162
+ public function setAttributeSet($attribute);
163
+
164
+ /**
165
+ * Gets the product attribute set.
166
+ *
167
+ * @return string
168
+ */
169
+ public function getAttributeSet();
170
+
171
  /**
172
  * Sets whether the product is in stock.
173
  *
app/code/community/Converdo/Common/Query/Models/EcommerceItem.php CHANGED
@@ -51,6 +51,11 @@ class EcommerceItem implements EcommerceItemInterface
51
  */
52
  protected $type;
53
 
 
 
 
 
 
54
  /**
55
  * @var bool
56
  */
@@ -249,6 +254,24 @@ class EcommerceItem implements EcommerceItemInterface
249
  return $this->type;
250
  }
251
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  /**
253
  * @inheritDoc
254
  */
51
  */
52
  protected $type;
53
 
54
+ /**
55
+ * @var string
56
+ */
57
+ protected $attribute;
58
+
59
  /**
60
  * @var bool
61
  */
254
  return $this->type;
255
  }
256
 
257
+ /**
258
+ * @inheritDoc
259
+ */
260
+ public function setAttributeSet($attribute)
261
+ {
262
+ $this->attribute = $attribute;
263
+
264
+ return $this;
265
+ }
266
+
267
+ /**
268
+ * @inheritDoc
269
+ */
270
+ public function getAttributeSet()
271
+ {
272
+ return $this->attribute;
273
+ }
274
+
275
  /**
276
  * @inheritDoc
277
  */
app/code/community/Converdo/Common/Query/Queries/EcommerceView.php CHANGED
@@ -31,7 +31,7 @@ class EcommerceView extends AbstractQuery
31
  $this->metadata()->set('rid', $product->getId());
32
  $this->metadata()->set('tid', $product->getChildrenIds());
33
  $this->metadata()->set('typ', $product->getType());
34
- $this->metadata()->set('att', null);
35
  $this->metadata()->set('stb', $product->getIsInStock());
36
  $this->metadata()->set('sqn', $product->getStockQuantity());
37
  $this->metadata()->set('bra', $product->getManufacturer());
31
  $this->metadata()->set('rid', $product->getId());
32
  $this->metadata()->set('tid', $product->getChildrenIds());
33
  $this->metadata()->set('typ', $product->getType());
34
+ $this->metadata()->set('att', $product->getAttributeSet());
35
  $this->metadata()->set('stb', $product->getIsInStock());
36
  $this->metadata()->set('sqn', $product->getStockQuantity());
37
  $this->metadata()->set('bra', $product->getManufacturer());
app/code/community/Converdo/Magento/Config/Configuration.php CHANGED
@@ -50,7 +50,7 @@ class Configuration extends AbstractPlatformConfiguration
50
  */
51
  public function version($check = null)
52
  {
53
- $version = Mage::getConfig()->getNode('modules/Converdo_Magento/version')->asArray();
54
 
55
  return $check ? $version === $check : $version;
56
  }
50
  */
51
  public function version($check = null)
52
  {
53
+ $version = cvd_config()->version();
54
 
55
  return $check ? $version === $check : $version;
56
  }
app/code/community/Converdo/Magento/Factories/EcommerceItemFactory.php CHANGED
@@ -21,16 +21,17 @@ class EcommerceItemFactory
21
  return (new EcommerceItem())
22
  ->setId($product ? $product->getId() : $original->getId())
23
  ->setSKU($product ? $product->getSku() : $original->getSku())
24
- ->setName($product ? $product->getName() : $original->getName())
25
- ->setCategories(self::categories($original->getCategoryIds()))
26
- ->setChildrenIds(self::children($original))
27
  ->setPrice($product ? $product->getPrice() : PriceHelper::resolve($original))
28
  ->setQuantity($product ? $product->getQty() : 1)
29
  ->setImageUrl($original->getImageUrl())
30
  ->setType($original->getTypeId())
31
  ->setIsInStock($original->getStockItem()->getIsInStock())
32
  ->setStockQuantity($original->getStockItem()->getQty())
33
- ->setManufacturer($original->getData('manufacturer'))
 
34
  ->setCost($original->getData('cost'))
35
  ;
36
  }
@@ -75,4 +76,30 @@ class EcommerceItemFactory
75
 
76
  return array_keys($children[0]);
77
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  }
21
  return (new EcommerceItem())
22
  ->setId($product ? $product->getId() : $original->getId())
23
  ->setSKU($product ? $product->getSku() : $original->getSku())
24
+ ->setName(addslashes($product ? $product->getName() : $original->getName()))
25
+ ->setCategories(static::categories($original->getCategoryIds()))
26
+ ->setChildrenIds(static::children($original))
27
  ->setPrice($product ? $product->getPrice() : PriceHelper::resolve($original))
28
  ->setQuantity($product ? $product->getQty() : 1)
29
  ->setImageUrl($original->getImageUrl())
30
  ->setType($original->getTypeId())
31
  ->setIsInStock($original->getStockItem()->getIsInStock())
32
  ->setStockQuantity($original->getStockItem()->getQty())
33
+ ->setManufacturer($original->getAttributeText('manufacturer'))
34
+ ->setAttributeSet(static::attribute($original))
35
  ->setCost($original->getData('cost'))
36
  ;
37
  }
76
 
77
  return array_keys($children[0]);
78
  }
79
+
80
+ /**
81
+ * Finds the attribute set name.
82
+ *
83
+ * @param Mage_Catalog_Model_Product $product
84
+ * @return string|null
85
+ */
86
+ protected static function attribute(Mage_Catalog_Model_Product $product)
87
+ {
88
+ $attributeSetModel = Mage::getModel("eav/entity_attribute_set");
89
+
90
+ $attributeSetModel->load($product->getAttributeSetId());
91
+
92
+ return $attributeSetModel->getData('attribute_set_name');
93
+ }
94
+
95
+ /**
96
+ * Finds the manufacturer name.
97
+ *
98
+ * @param Mage_Catalog_Model_Product $product
99
+ * @return string|null
100
+ */
101
+ protected static function manufacturer(Mage_Catalog_Model_Product $product)
102
+ {
103
+
104
+ }
105
  }
app/code/community/Converdo/Magento/etc/adminhtml.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <children>
12
  <converdo translate="title" module="analytics">
13
- <title>Converdo Conversion Optimizer</title>
14
  </converdo>
15
  </children>
16
  </config>
10
  <config>
11
  <children>
12
  <converdo translate="title" module="analytics">
13
+ <title>Converdo Conversion Monitor</title>
14
  </converdo>
15
  </children>
16
  </config>
app/code/community/Converdo/Magento/etc/config.xml CHANGED
@@ -3,7 +3,7 @@
3
  <config>
4
  <modules>
5
  <Converdo_Magento>
6
- <version>2.1.5.57</version>
7
  </Converdo_Magento>
8
  </modules>
9
  <global>
@@ -28,7 +28,7 @@
28
  <modules>
29
  <Converdo_Magento>
30
  <files>
31
- <default>Converdo_Analytics.csv</default>
32
  </files>
33
  </Converdo_Magento>
34
  </modules>
@@ -65,7 +65,7 @@
65
  <use>standard</use>
66
  <args>
67
  <module>Converdo_Magento</module>
68
- <frontName>converdoanalytics</frontName>
69
  </args>
70
  </Converdo_Magento>
71
  </routers>
@@ -75,7 +75,7 @@
75
  <modules>
76
  <Converdo_Magento>
77
  <files>
78
- <default>Converdo_Analytics.csv</default>
79
  </files>
80
  </Converdo_Magento>
81
  </modules>
@@ -94,7 +94,7 @@
94
  <layout>
95
  <updates>
96
  <namespace_module>
97
- <file>converdoanalytics.xml</file>
98
  </namespace_module>
99
  </updates>
100
  </layout>
3
  <config>
4
  <modules>
5
  <Converdo_Magento>
6
+ <version>2.0.0.0</version>
7
  </Converdo_Magento>
8
  </modules>
9
  <global>
28
  <modules>
29
  <Converdo_Magento>
30
  <files>
31
+ <default>Converdo_ConversionMonitor.csv</default>
32
  </files>
33
  </Converdo_Magento>
34
  </modules>
65
  <use>standard</use>
66
  <args>
67
  <module>Converdo_Magento</module>
68
+ <frontName>conversionmonitor</frontName>
69
  </args>
70
  </Converdo_Magento>
71
  </routers>
75
  <modules>
76
  <Converdo_Magento>
77
  <files>
78
+ <default>Converdo_ConversionMonitor.csv</default>
79
  </files>
80
  </Converdo_Magento>
81
  </modules>
94
  <layout>
95
  <updates>
96
  <namespace_module>
97
+ <file>conversionmonitor.xml</file>
98
  </namespace_module>
99
  </updates>
100
  </layout>
app/code/community/Converdo/Magento/etc/system.xml CHANGED
@@ -1,10 +1,16 @@
1
  <?xml version="1.0"?>
2
 
3
  <config>
 
 
 
 
 
 
4
  <sections>
5
  <converdo translate="label" module="analytics">
6
- <label>Converdo</label>
7
- <tab>sales</tab>
8
  <class>converdo-analytics-tab</class>
9
  <frontend_type>text</frontend_type>
10
  <sort_order>350</sort_order>
@@ -12,8 +18,8 @@
12
  <show_in_website>1</show_in_website>
13
  <show_in_store>1</show_in_store>
14
  <groups>
15
- <analytics translate="label">
16
- <label>Converdo Conversion Optimizer</label>
17
  <frontend_type>text</frontend_type>
18
  <sort_order>0</sort_order>
19
  <show_in_default>1</show_in_default>
@@ -31,7 +37,17 @@
31
  <show_in_website>1</show_in_website>
32
  <show_in_store>1</show_in_store>
33
  </active>
34
-
 
 
 
 
 
 
 
 
 
 
35
  <site translate="label">
36
  <label>Website Token</label>
37
  <comment>Find the website token in the dashboard</comment>
@@ -63,7 +79,7 @@
63
  </encryption>
64
 
65
  </fields>
66
- </analytics>
67
  </groups>
68
  </converdo>
69
  </sections>
1
  <?xml version="1.0"?>
2
 
3
  <config>
4
+ <tabs>
5
+ <monitoring translate="label" module="analytics">
6
+ <label>Monitoring</label>
7
+ <sort_order>99999</sort_order>
8
+ </monitoring>
9
+ </tabs>
10
  <sections>
11
  <converdo translate="label" module="analytics">
12
+ <label>Conversion Monitor</label>
13
+ <tab>monitoring</tab>
14
  <class>converdo-analytics-tab</class>
15
  <frontend_type>text</frontend_type>
16
  <sort_order>350</sort_order>
18
  <show_in_website>1</show_in_website>
19
  <show_in_store>1</show_in_store>
20
  <groups>
21
+ <conversionmonitorsettings translate="label">
22
+ <label>Settings</label>
23
  <frontend_type>text</frontend_type>
24
  <sort_order>0</sort_order>
25
  <show_in_default>1</show_in_default>
37
  <show_in_website>1</show_in_website>
38
  <show_in_store>1</show_in_store>
39
  </active>
40
+ </fields>
41
+ </conversionmonitorsettings>
42
+ <conversionmonitortokens translate="label">
43
+ <label>API Tokens</label>
44
+ <frontend_type>text</frontend_type>
45
+ <sort_order>0</sort_order>
46
+ <show_in_default>1</show_in_default>
47
+ <show_in_website>1</show_in_website>
48
+ <show_in_store>1</show_in_store>
49
+ <expanded>1</expanded>
50
+ <fields>
51
  <site translate="label">
52
  <label>Website Token</label>
53
  <comment>Find the website token in the dashboard</comment>
79
  </encryption>
80
 
81
  </fields>
82
+ </conversionmonitortokens>
83
  </groups>
84
  </converdo>
85
  </sections>
app/design/adminhtml/default/default/layout/{converdoanalytics.xml → conversionmonitor.xml} RENAMED
@@ -4,7 +4,7 @@
4
  <default>
5
  <reference name="head">
6
  <action method="addCss">
7
- <name>converdoanalytics/css/system_config_edit.css</name>
8
  </action>
9
  </reference>
10
  </default>
4
  <default>
5
  <reference name="head">
6
  <action method="addCss">
7
+ <name>conversionmonitor/css/system_config_edit.css</name>
8
  </action>
9
  </reference>
10
  </default>
app/etc/modules/{Converdo_Analytics.xml → Converdo_ConversionMonitor.xml} RENAMED
File without changes
app/locale/en_US/{Converdo_Analytics.csv → Converdo_ConversionMonitor.csv} RENAMED
File without changes
app/locale/nl_NL/{Converdo_Analytics.csv → Converdo_ConversionMonitor.csv} RENAMED
File without changes
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Converdo_Analytics</name>
4
- <version>2.1.6.18</version>
5
  <stability>stable</stability>
6
  <license>MITL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Better E-commerce Analytics. Clear, actionable insight in the behavior of your visitors. Improve your campaigns and conversion rate easily.</summary>
10
  <description>Better E-commerce Analytics. Clear, actionable insight in the behavior of your visitors. Improve your campaigns and conversion rate easily. This plugin, installed in a minute, is all you need to have a complete and powerfull Analytics Suite. View your KPI's and sales funnels, segmented on dozens of dimensions like page type, device, landing page, campaign, etc. This plugin collects your users behaviour so you can view the insights on your dashboard on converdo.com. You can use Converdo Analytics side by side with Google Analytics without a problem. It works asynchronous so it will never impact your user experience. This extension is made especially for Magento ecommerce stores, which provides you powerfull insights out of the box.</description>
11
- <notes>Homepage visits are now tracked as 'homepage' instead of 'cms'.</notes>
12
  <authors><author><name>Roeland van Oostenbrugge</name><user>converdo</user><email>roeland@converdo.nl</email></author></authors>
13
- <date>2017-05-12</date>
14
- <time>08:35:36</time>
15
- <contents><target name="magecommunity"><dir name="Converdo"><dir name="Common"><dir name="API"><file name="ConverdoAPI.php" hash="73dfefe52b6f0066863e93239bb607c6"/><file name="ConverdoClient.php" hash="276608b1416ec655d48d4cf213a885b2"/><dir name="Models"><dir name="Contracts"><file name="OrderInterface.php" hash="426e172166014f03cfe4d44bf4041711"/></dir><file name="Order.php" hash="fc528438a5f74c8e3689189a4c305627"/></dir><file name="Requests.php" hash="f96c3a84de46b6cc8484d07e3b9a2314"/><dir name="Sections"><file name="ConverdoOrderAPI.php" hash="af4dd49f7c08176410aafc72da88b204"/><file name="SetupAPI.php" hash="9a1059594426d668bd74394e16b8af52"/></dir><dir name="resources"><file name="api_cert_chain.pem" hash="38cd779c9429ab6e2e5ae3437b763238"/></dir></dir><dir name="Config"><file name="AbstractPlatformConfiguration.php" hash="33f47b864db382871f06513266232aec"/><file name="Configuration.php" hash="b14ee32d7fc76ade7698746b20339952"/><dir name="Contracts"><file name="PlatformConfigurationContract.php" hash="d8b185da5dcad32402074b50eaf1dddc"/></dir></dir><dir name="Container"><file name="Container.php" hash="a2205f6d86205da4de23e794c41dac72"/></dir><dir name="Controllers"><file name="PingController.php" hash="8c94c9349b5048f0634f3bf74a6a72e6"/></dir><dir name="Cookie"><dir name="Factories"><file name="CookieFactory.php" hash="78252b7a31606240b43aa55374dd9e05"/></dir><dir name="Managers"><file name="CookieManager.php" hash="594d3b5397162d87fc4801a7476f4382"/></dir><dir name="Models"><dir name="Contracts"><file name="CookieInterface.php" hash="92b3fa2f6990f88f301c999c996f50e3"/></dir><file name="Cookie.php" hash="1fcb532f1b6b2930baf003497e2f66c6"/></dir></dir><dir name="Input"><file name="Input.php" hash="dff17aa36ebff1249828ef849a7f6b3d"/><file name="InputManager.php" hash="ba9c61bb2a5d9e762c405f68b3773e45"/></dir><dir name="Log"><file name="LogReader.php" hash="8d1e48c646aebbacc9d22d37e3c42a71"/><file name="LoggerAwareInterface.php" hash="75abd91a001bcf77df81ba4b487dadf4"/><file name="LoggerInterface.php" hash="9fd1a50cac6d243e5886df81aabf9794"/></dir><dir name="Page"><dir name="Factories"><file name="PageFactory.php" hash="aa982ee69889e676f67abd564279fde2"/></dir><dir name="Models"><dir name="Contracts"><file name="PageInterface.php" hash="ba745e11e0372dda50981143cb1d1570"/></dir><file name="Page.php" hash="7b75835e5737b69cf46ea77644cfa851"/></dir><dir name="Support"><dir name="Contracts"><file name="RouteResolverInterface.php" hash="400bfe4611b9e732d9fdd4fef86575fe"/></dir><file name="PageTypes.php" hash="4d16a8d516f5707e4c4359aae1ced944"/></dir></dir><dir name="Query"><dir name="Managers"><file name="QueryManager.php" hash="61e60f8398362956cb0ec8c762b02395"/><file name="QueryMetadata.php" hash="200fa9e4617ad1a2af5e1917f98608b7"/></dir><dir name="Models"><dir name="Contracts"><file name="EcommerceCartInterface.php" hash="7b18db590c782d99f7b9514c5d375348"/><file name="EcommerceCategoryInterface.php" hash="159b1bb3a4248c67e46dd6201064ed2c"/><file name="EcommerceItemInterface.php" hash="9be3da4668044b3fb0609bb496371da6"/><file name="EcommerceSearchInterface.php" hash="6aad67169123749733737e2b0104ffba"/></dir><file name="EcommerceCart.php" hash="d569b0d2ecb4421b9e06c4de03b1a31a"/><file name="EcommerceCategory.php" hash="d704a2ef710fb7b7bf07d582db2e0611"/><file name="EcommerceItem.php" hash="90efad4308237bfbdb11e67f562d0e8d"/><file name="EcommerceSearch.php" hash="0165c34cab7c3d0a73694d50a26dd77a"/></dir><dir name="Queries"><file name="AbstractQuery.php" hash="5dcee2afe12464bfc44da51e4239a446"/><file name="AddEcommerceItem.php" hash="fddbf90dd55152fc6a7c7b0b505c028a"/><file name="CategoryView.php" hash="8ffba1f33d6422906f7ed892622fb7d0"/><dir name="Contracts"><file name="QueryInterface.php" hash="fb92b5d11d99cfbff66af5596032fc13"/></dir><file name="CustomVariable.php" hash="aeb6b689fe9329b3575568baad8654bc"/><file name="EcommerceView.php" hash="c050012bc7e21c8756556cd98a61ae47"/><file name="EnableHeartBeatTimer.php" hash="764297b7bdeafe467b30a9fd818e9387"/><file name="EnableLinkTracking.php" hash="ad80f078bac6d11bebd410fd6d5940aa"/><file name="SiteId.php" hash="512d6b403ca87040a91634a025ba61b3"/><file name="TrackEcommerceCart.php" hash="feaee2f5a7179ccf850a620b281c32da"/><file name="TrackPageView.php" hash="c493c1740f6c1ecc607da3491dbbcfb0"/><file name="TrackSiteSearch.php" hash="ca3316f8aec5439041ff2d88953362ae"/><file name="TrackerUrl.php" hash="d9149278970edebdc256596f8cfb841e"/></dir></dir><dir name="Response"><file name="JsonResponse.php" hash="1226250c2546b8255f93bacb8315b49c"/><file name="Response.php" hash="a4fb3927099ee5e69ea869b464039fd6"/></dir><dir name="Security"><file name="Crypt.php" hash="46cbccc802d4715868a1312f5db353e1"/></dir><dir name="Support"><file name="Arrayable.php" hash="cd34de85cce8e6b7ca3f5585dfa631e9"/><file name="HasParameters.php" hash="0821ecb3fd95c56e34880e86d1afb246"/><file name="UsesInput.php" hash="e4c019693f821df634361955a24d056d"/></dir><file name="autoload.php" hash="041bdebe2fb25a9cf76fb68e083c7302"/><file name="bootstrap.php" hash="6a9ac72f0a211dbee9669a462d934eb3"/><file name="config.php" hash="0ae0e4fe0414d85c038dabaa5ed38d23"/><file name="dependencies.php" hash="45eca8d2171d49f03f4a8721d8167a38"/><file name="functions.php" hash="864a2f9356955a2c44f47b3098f8a738"/></dir><dir name="Magento"><dir name="API"><dir name="Factories"><file name="OrderFactory.php" hash="9ba23305cf4f4554c67bab265e0be83d"/></dir></dir><dir name="Block"><file name="Tracker.php" hash="c2d5df5e73ee1609bb41ddc0425fc975"/></dir><dir name="Config"><file name="Configuration.php" hash="48e4a73ad66dd5a4d41de58c7a2ebe24"/></dir><dir name="Container"><file name="Bindings.php" hash="9011f4fe08ccbc98b4b881422a53760c"/></dir><dir name="Factories"><file name="EcommerceCartFactory.php" hash="43ce610668ad865ddaaa5dfce6420e93"/><file name="EcommerceCategoryFactory.php" hash="7d21cba8d68be5bccb4f6387badb8674"/><file name="EcommerceItemFactory.php" hash="7c09e3ac74f1ccab2ab368a69fefcf39"/><file name="EcommerceSearchFactory.php" hash="ea08378e24f27567abb3ae85f500e658"/></dir><dir name="Helper"><file name="Data.php" hash="5b2572fbbd9d6acfe1907830ab883a19"/></dir><dir name="Log"><file name="Logger.php" hash="f08e96e7d5fffcfacc4e0b052058dd73"/></dir><dir name="Model"><file name="Observer.php" hash="51cc0a8f619715dca0b51caab37256d8"/></dir><dir name="Page"><file name="RouteResolver.php" hash="fe9952398586e39679c85092ea03f013"/></dir><dir name="Support"><file name="ListensToOrders.php" hash="1f1025a5f93f43de05bf27bfd6048b97"/><file name="PriceHelper.php" hash="375c5f44c2c9b90618919412e235e961"/></dir><file name="autoload.php" hash="1dbde2e0916e842888085e261ee558c5"/><dir name="controllers"><file name="PingController.php" hash="7649748a504168df69239daed1a96418"/></dir><dir name="etc"><file name="adminhtml.xml" hash="824d06724e840246b69adfd13e04254b"/><file name="config.xml" hash="43db0c00b39c0d284dd40923d4196bae"/><file name="system.xml" hash="16fc7457f9305475b216c81c6cf1a0af"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="analytics.xml" hash="d3f9d35df1981968a55a331c2b92d473"/></dir><dir name="template"><dir name="analytics"><file name="analytics.phtml" hash="30a9a5e06b7f8e8c8dc5d73249f1e172"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Converdo_Analytics.xml" hash="c1e39f4e5886e1a22dc078ddebca8ee3"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Converdo_Analytics.csv" hash="e5548c443f1564ce28992e6566cc454d"/></dir><dir name="nl_NL"><file name="Converdo_Analytics.csv" hash="71b67c6946b28b410b919c7a727d1cb2"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="converdoanalytics"><dir name="css"><file name="system_config_edit.css" hash="fd6f5337fd9a9b69b85079e17aa0e40b"/></dir><dir name="images"><file name="favicon.png" hash="674c9388eba1ea89e200fe6b1a62fc24"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="app"><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="converdoanalytics.xml" hash="b949a1ad4594eeb82ae7138c60afc19e"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.5.37</min><max>7.0.5</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Converdo_Analytics</name>
4
+ <version>2.1.6.49</version>
5
  <stability>stable</stability>
6
  <license>MITL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Better E-commerce Analytics. Clear, actionable insight in the behavior of your visitors. Improve your campaigns and conversion rate easily.</summary>
10
  <description>Better E-commerce Analytics. Clear, actionable insight in the behavior of your visitors. Improve your campaigns and conversion rate easily. This plugin, installed in a minute, is all you need to have a complete and powerfull Analytics Suite. View your KPI's and sales funnels, segmented on dozens of dimensions like page type, device, landing page, campaign, etc. This plugin collects your users behaviour so you can view the insights on your dashboard on converdo.com. You can use Converdo Analytics side by side with Google Analytics without a problem. It works asynchronous so it will never impact your user experience. This extension is made especially for Magento ecommerce stores, which provides you powerfull insights out of the box.</description>
11
+ <notes>Minor improvements</notes>
12
  <authors><author><name>Roeland van Oostenbrugge</name><user>converdo</user><email>roeland@converdo.nl</email></author></authors>
13
+ <date>2017-06-09</date>
14
+ <time>14:00:05</time>
15
+ <contents><target name="magecommunity"><dir name="Converdo"><dir name="Common"><dir name="API"><file name="ConverdoAPI.php" hash="73dfefe52b6f0066863e93239bb607c6"/><file name="ConverdoClient.php" hash="276608b1416ec655d48d4cf213a885b2"/><dir name="Models"><dir name="Contracts"><file name="OrderInterface.php" hash="426e172166014f03cfe4d44bf4041711"/></dir><file name="Order.php" hash="fc528438a5f74c8e3689189a4c305627"/></dir><file name="Requests.php" hash="f96c3a84de46b6cc8484d07e3b9a2314"/><dir name="Sections"><file name="ConverdoOrderAPI.php" hash="af4dd49f7c08176410aafc72da88b204"/><file name="SetupAPI.php" hash="9a1059594426d668bd74394e16b8af52"/></dir><dir name="resources"><file name="api_cert_chain.pem" hash="38cd779c9429ab6e2e5ae3437b763238"/></dir></dir><dir name="Config"><file name="AbstractPlatformConfiguration.php" hash="33f47b864db382871f06513266232aec"/><file name="Configuration.php" hash="cd6aa42f22256d69b5fe3b151bb2b199"/><dir name="Contracts"><file name="PlatformConfigurationContract.php" hash="d8b185da5dcad32402074b50eaf1dddc"/></dir></dir><dir name="Container"><file name="Container.php" hash="a2205f6d86205da4de23e794c41dac72"/></dir><dir name="Controllers"><file name="PingController.php" hash="8c94c9349b5048f0634f3bf74a6a72e6"/></dir><dir name="Cookie"><dir name="Factories"><file name="CookieFactory.php" hash="78252b7a31606240b43aa55374dd9e05"/></dir><dir name="Managers"><file name="CookieManager.php" hash="594d3b5397162d87fc4801a7476f4382"/></dir><dir name="Models"><dir name="Contracts"><file name="CookieInterface.php" hash="92b3fa2f6990f88f301c999c996f50e3"/></dir><file name="Cookie.php" hash="1fcb532f1b6b2930baf003497e2f66c6"/></dir></dir><dir name="Input"><file name="Input.php" hash="dff17aa36ebff1249828ef849a7f6b3d"/><file name="InputManager.php" hash="ba9c61bb2a5d9e762c405f68b3773e45"/></dir><dir name="Log"><file name="LogReader.php" hash="8d1e48c646aebbacc9d22d37e3c42a71"/><file name="LoggerAwareInterface.php" hash="75abd91a001bcf77df81ba4b487dadf4"/><file name="LoggerInterface.php" hash="9fd1a50cac6d243e5886df81aabf9794"/></dir><dir name="Page"><dir name="Factories"><file name="PageFactory.php" hash="aa982ee69889e676f67abd564279fde2"/></dir><dir name="Models"><dir name="Contracts"><file name="PageInterface.php" hash="ba745e11e0372dda50981143cb1d1570"/></dir><file name="Page.php" hash="7b75835e5737b69cf46ea77644cfa851"/></dir><dir name="Support"><dir name="Contracts"><file name="RouteResolverInterface.php" hash="400bfe4611b9e732d9fdd4fef86575fe"/></dir><file name="PageTypes.php" hash="4d16a8d516f5707e4c4359aae1ced944"/></dir></dir><dir name="Query"><dir name="Managers"><file name="QueryManager.php" hash="61e60f8398362956cb0ec8c762b02395"/><file name="QueryMetadata.php" hash="200fa9e4617ad1a2af5e1917f98608b7"/></dir><dir name="Models"><dir name="Contracts"><file name="EcommerceCartInterface.php" hash="7b18db590c782d99f7b9514c5d375348"/><file name="EcommerceCategoryInterface.php" hash="159b1bb3a4248c67e46dd6201064ed2c"/><file name="EcommerceItemInterface.php" hash="75cc52cd80706a441e36a715af67bbd3"/><file name="EcommerceSearchInterface.php" hash="6aad67169123749733737e2b0104ffba"/></dir><file name="EcommerceCart.php" hash="d569b0d2ecb4421b9e06c4de03b1a31a"/><file name="EcommerceCategory.php" hash="d704a2ef710fb7b7bf07d582db2e0611"/><file name="EcommerceItem.php" hash="b87c8d4095920ca92ddde663fddfc081"/><file name="EcommerceSearch.php" hash="0165c34cab7c3d0a73694d50a26dd77a"/></dir><dir name="Queries"><file name="AbstractQuery.php" hash="5dcee2afe12464bfc44da51e4239a446"/><file name="AddEcommerceItem.php" hash="fddbf90dd55152fc6a7c7b0b505c028a"/><file name="CategoryView.php" hash="8ffba1f33d6422906f7ed892622fb7d0"/><dir name="Contracts"><file name="QueryInterface.php" hash="fb92b5d11d99cfbff66af5596032fc13"/></dir><file name="CustomVariable.php" hash="aeb6b689fe9329b3575568baad8654bc"/><file name="EcommerceView.php" hash="8aea80f7490b379965c9735f5afb8bc5"/><file name="EnableHeartBeatTimer.php" hash="764297b7bdeafe467b30a9fd818e9387"/><file name="EnableLinkTracking.php" hash="ad80f078bac6d11bebd410fd6d5940aa"/><file name="SiteId.php" hash="512d6b403ca87040a91634a025ba61b3"/><file name="TrackEcommerceCart.php" hash="feaee2f5a7179ccf850a620b281c32da"/><file name="TrackPageView.php" hash="c493c1740f6c1ecc607da3491dbbcfb0"/><file name="TrackSiteSearch.php" hash="ca3316f8aec5439041ff2d88953362ae"/><file name="TrackerUrl.php" hash="d9149278970edebdc256596f8cfb841e"/></dir></dir><dir name="Response"><file name="JsonResponse.php" hash="1226250c2546b8255f93bacb8315b49c"/><file name="Response.php" hash="a4fb3927099ee5e69ea869b464039fd6"/></dir><dir name="Security"><file name="Crypt.php" hash="46cbccc802d4715868a1312f5db353e1"/></dir><dir name="Support"><file name="Arrayable.php" hash="cd34de85cce8e6b7ca3f5585dfa631e9"/><file name="HasParameters.php" hash="0821ecb3fd95c56e34880e86d1afb246"/><file name="UsesInput.php" hash="e4c019693f821df634361955a24d056d"/></dir><file name="autoload.php" hash="041bdebe2fb25a9cf76fb68e083c7302"/><file name="bootstrap.php" hash="6a9ac72f0a211dbee9669a462d934eb3"/><file name="config.php" hash="0ae0e4fe0414d85c038dabaa5ed38d23"/><file name="dependencies.php" hash="45eca8d2171d49f03f4a8721d8167a38"/><file name="functions.php" hash="864a2f9356955a2c44f47b3098f8a738"/></dir><dir name="Magento"><dir name="API"><dir name="Factories"><file name="OrderFactory.php" hash="9ba23305cf4f4554c67bab265e0be83d"/></dir></dir><dir name="Block"><file name="Tracker.php" hash="c2d5df5e73ee1609bb41ddc0425fc975"/></dir><dir name="Config"><file name="Configuration.php" hash="aae87028c08665d01ad29e6349b59ad8"/></dir><dir name="Container"><file name="Bindings.php" hash="9011f4fe08ccbc98b4b881422a53760c"/></dir><dir name="Factories"><file name="EcommerceCartFactory.php" hash="43ce610668ad865ddaaa5dfce6420e93"/><file name="EcommerceCategoryFactory.php" hash="7d21cba8d68be5bccb4f6387badb8674"/><file name="EcommerceItemFactory.php" hash="f948d85b55c31244efad3c4301de37ad"/><file name="EcommerceSearchFactory.php" hash="ea08378e24f27567abb3ae85f500e658"/></dir><dir name="Helper"><file name="Data.php" hash="5b2572fbbd9d6acfe1907830ab883a19"/></dir><dir name="Log"><file name="Logger.php" hash="f08e96e7d5fffcfacc4e0b052058dd73"/></dir><dir name="Model"><file name="Observer.php" hash="51cc0a8f619715dca0b51caab37256d8"/></dir><dir name="Page"><file name="RouteResolver.php" hash="fe9952398586e39679c85092ea03f013"/></dir><dir name="Support"><file name="ListensToOrders.php" hash="1f1025a5f93f43de05bf27bfd6048b97"/><file name="PriceHelper.php" hash="375c5f44c2c9b90618919412e235e961"/></dir><file name="autoload.php" hash="1dbde2e0916e842888085e261ee558c5"/><dir name="controllers"><file name="PingController.php" hash="7649748a504168df69239daed1a96418"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0202cead2a77b382e749eac8c11ca4a4"/><file name="config.xml" hash="0e43ae160f21b409d3bde01997fa42c9"/><file name="system.xml" hash="254d563ef535319c1476be21b5778000"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="analytics.xml" hash="d3f9d35df1981968a55a331c2b92d473"/></dir><dir name="template"><dir name="analytics"><file name="analytics.phtml" hash="30a9a5e06b7f8e8c8dc5d73249f1e172"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Converdo_ConversionMonitor.xml" hash="c1e39f4e5886e1a22dc078ddebca8ee3"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Converdo_ConversionMonitor.csv" hash="e5548c443f1564ce28992e6566cc454d"/></dir><dir name="nl_NL"><file name="Converdo_ConversionMonitor.csv" hash="71b67c6946b28b410b919c7a727d1cb2"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="conversionmonitor"><dir name="css"><file name="system_config_edit.css" hash="8b2b38b778b1167bb3e2500cb708f6c7"/></dir><dir name="images"><file name="favicon.png" hash="9e7dd5227bc0d5930a9d03dc913ff6b5"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="app"><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="conversionmonitor.xml" hash="1a379e33a6ec59c984f571011df96a54"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.5.37</min><max>7.0.5</max></php></required></dependencies>
18
  </package>
skin/adminhtml/default/default/converdoanalytics/images/favicon.png DELETED
Binary file
skin/adminhtml/default/default/{converdoanalytics → conversionmonitor}/css/system_config_edit.css RENAMED
@@ -1,4 +1,4 @@
1
- #system_config_tabs .converdo-analytics-tab { background:transparent url(../images/favicon.png) 18px 3px no-repeat !important; display:block; height:33px; }
2
  #system_config_tabs .converdo-analytics-tab:hover { background-color:#d8e6e6 !important; border-right:1px solid #8aa5a6; }
3
  #system_config_tabs .converdo-analytics-tab.active { background-color:#fff !important; border-right:none !important; }
4
  #system_config_tabs .converdo-analytics-tab span { padding:7px 0 1px 47px; display:block; height:25px; }
1
+ #system_config_tabs .converdo-analytics-tab { margin: 4px 0 -12px 0; background:transparent url(../images/favicon.png) 18px 3px no-repeat !important; display:block; height:33px; }
2
  #system_config_tabs .converdo-analytics-tab:hover { background-color:#d8e6e6 !important; border-right:1px solid #8aa5a6; }
3
  #system_config_tabs .converdo-analytics-tab.active { background-color:#fff !important; border-right:none !important; }
4
  #system_config_tabs .converdo-analytics-tab span { padding:7px 0 1px 47px; display:block; height:25px; }
skin/adminhtml/default/default/conversionmonitor/images/favicon.png ADDED
Binary file