Version Notes
More reliable way to track orders and product metadata.
Download this release
Release Info
Developer | Roeland van Oostenbrugge |
Extension | Converdo_Analytics |
Version | 2.1.5.52 |
Comparing to | |
See all releases |
Code changes from version 2.1.5.51 to 2.1.5.52
app/code/community/Converdo/Common/Query/Queries/EcommerceView.php
CHANGED
@@ -45,7 +45,7 @@ class EcommerceView extends AbstractQuery
|
|
45 |
{
|
46 |
QueryManager::store(
|
47 |
$this->position(),
|
48 |
-
"_paq.push(['setEcommerceView', '{$this->get('product')->getSku()}', '{$this->get('product')->getName()}',
|
49 |
);
|
50 |
}
|
51 |
|
45 |
{
|
46 |
QueryManager::store(
|
47 |
$this->position(),
|
48 |
+
"_paq.push(['setEcommerceView', '{$this->get('product')->getSku()}', '{$this->get('product')->getName()}', {$this->get('product')->getCategoriesAsJson()}, {$this->get('product')->getPrice()}]);"
|
49 |
);
|
50 |
}
|
51 |
|
app/code/community/Converdo/Common/autoload.php
CHANGED
@@ -2,43 +2,36 @@
|
|
2 |
|
3 |
$classmap = [
|
4 |
'/Common/Support/HasParameters.php',
|
5 |
-
'/Common/
|
6 |
-
'/Common/API/Factories/OrderFactory.php',
|
7 |
-
'/Common/API/Models/Contracts/OrderInterface.php',
|
8 |
-
'/Common/API/Models/Order.php',
|
9 |
-
'/Common/API/Sections/ConverdoOrderAPI.php',
|
10 |
-
'/Common/API/ConverdoAPI.php',
|
11 |
-
'/Common/API/ConverdoClient.php',
|
12 |
-
'/Common/API/Requests.php',
|
13 |
-
'/Common/Cookie/Models/Contracts/CookieInterface.php',
|
14 |
-
'/Common/Cookie/Models/Cookie.php',
|
15 |
-
'/Common/Cookie/Factories/CookieFactory.php',
|
16 |
-
'/Common/Cookie/Managers/CookieManager.php',
|
17 |
-
'/Common/Input/InputManager.php',
|
18 |
'/Common/Input/Input.php',
|
19 |
-
'/Common/
|
20 |
-
'/Common/
|
21 |
-
|
22 |
-
'/Common/Log/LoggerAwareInterface.php',
|
23 |
'/Common/Log/LoggerInterface.php',
|
24 |
'/Common/Log/Logger.php',
|
|
|
25 |
'/Common/Log/LogReader.php',
|
26 |
-
|
27 |
-
'/Common/
|
28 |
-
|
29 |
-
'/Common/
|
30 |
-
'/Common/
|
|
|
|
|
|
|
31 |
'/Common/Query/Managers/QueryManager.php',
|
32 |
'/Common/Query/Managers/QueryMetadata.php',
|
|
|
33 |
'/Common/Query/Models/Contracts/EcommerceCartInterface.php',
|
34 |
'/Common/Query/Models/Contracts/EcommerceCategoryInterface.php',
|
35 |
'/Common/Query/Models/Contracts/EcommerceItemInterface.php',
|
36 |
'/Common/Query/Models/Contracts/EcommerceSearchInterface.php',
|
37 |
-
|
38 |
'/Common/Query/Models/EcommerceCart.php',
|
|
|
39 |
'/Common/Query/Models/EcommerceItem.php',
|
40 |
'/Common/Query/Models/EcommerceSearch.php',
|
41 |
-
|
42 |
'/Common/Query/Queries/AbstractQuery.php',
|
43 |
'/Common/Query/Queries/EcommerceView.php',
|
44 |
'/Common/Query/Queries/CategoryView.php',
|
@@ -51,6 +44,35 @@ $classmap = [
|
|
51 |
'/Common/Query/Queries/EnableLinkTracking.php',
|
52 |
'/Common/Query/Queries/EnableHeartBeatTimer.php',
|
53 |
'/Common/Query/Queries/CustomVariable.php',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
'/Magento/Page/RouteResolver.php',
|
55 |
'/Magento/Config/Configuration.php',
|
56 |
'/Magento/Container/Bindings.php',
|
2 |
|
3 |
$classmap = [
|
4 |
'/Common/Support/HasParameters.php',
|
5 |
+
'/Common/Support/Arrayable.php',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
'/Common/Input/Input.php',
|
7 |
+
'/Common/Input/InputManager.php',
|
8 |
+
'/Common/Support/UsesInput.php',
|
9 |
+
|
|
|
10 |
'/Common/Log/LoggerInterface.php',
|
11 |
'/Common/Log/Logger.php',
|
12 |
+
'/Common/Log/LoggerAwareInterface.php',
|
13 |
'/Common/Log/LogReader.php',
|
14 |
+
|
15 |
+
'/Common/Security/Crypt.php',
|
16 |
+
|
17 |
+
'/Common/Response/Response.php',
|
18 |
+
'/Common/Response/JsonResponse.php',
|
19 |
+
|
20 |
+
'/Common/Query/Queries/Contracts/QueryInterface.php',
|
21 |
+
|
22 |
'/Common/Query/Managers/QueryManager.php',
|
23 |
'/Common/Query/Managers/QueryMetadata.php',
|
24 |
+
|
25 |
'/Common/Query/Models/Contracts/EcommerceCartInterface.php',
|
26 |
'/Common/Query/Models/Contracts/EcommerceCategoryInterface.php',
|
27 |
'/Common/Query/Models/Contracts/EcommerceItemInterface.php',
|
28 |
'/Common/Query/Models/Contracts/EcommerceSearchInterface.php',
|
29 |
+
|
30 |
'/Common/Query/Models/EcommerceCart.php',
|
31 |
+
'/Common/Query/Models/EcommerceCategory.php',
|
32 |
'/Common/Query/Models/EcommerceItem.php',
|
33 |
'/Common/Query/Models/EcommerceSearch.php',
|
34 |
+
|
35 |
'/Common/Query/Queries/AbstractQuery.php',
|
36 |
'/Common/Query/Queries/EcommerceView.php',
|
37 |
'/Common/Query/Queries/CategoryView.php',
|
44 |
'/Common/Query/Queries/EnableLinkTracking.php',
|
45 |
'/Common/Query/Queries/EnableHeartBeatTimer.php',
|
46 |
'/Common/Query/Queries/CustomVariable.php',
|
47 |
+
|
48 |
+
'/Common/Page/Models/Contracts/PageInterface.php',
|
49 |
+
'/Common/Page/Models/Page.php',
|
50 |
+
|
51 |
+
'/Common/Page/Factories/PageFactory.php',
|
52 |
+
|
53 |
+
'/Common/Page/Support/PageTypes.php',
|
54 |
+
'/Common/Page/Support/Contracts/RouteResolverInterface.php',
|
55 |
+
|
56 |
+
'/Common/Cookie/Models/Contracts/CookieInterface.php',
|
57 |
+
'/Common/Cookie/Models/Cookie.php',
|
58 |
+
'/Common/Cookie/Factories/CookieFactory.php',
|
59 |
+
'/Common/Cookie/Managers/CookieManager.php',
|
60 |
+
|
61 |
+
'/Common/Controllers/PingController.php',
|
62 |
+
|
63 |
+
'/Common/Container/Container.php',
|
64 |
+
|
65 |
+
'/Common/Config/Contracts/PlatformConfigurationContract.php',
|
66 |
+
'/Common/Config/Configuration.php',
|
67 |
+
|
68 |
+
'/Common/API/Models/Contracts/OrderInterface.php',
|
69 |
+
'/Common/API/Models/Order.php',
|
70 |
+
'/Common/API/ConverdoClient.php',
|
71 |
+
'/Common/API/Sections/ConverdoOrderAPI.php',
|
72 |
+
'/Common/API/ConverdoAPI.php',
|
73 |
+
'/Common/API/Requests.php',
|
74 |
+
'/Common/API/Factories/OrderFactory.php',
|
75 |
+
|
76 |
'/Magento/Page/RouteResolver.php',
|
77 |
'/Magento/Config/Configuration.php',
|
78 |
'/Magento/Container/Bindings.php',
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Converdo_Analytics</name>
|
4 |
-
<version>2.1.5.
|
5 |
<stability>stable</stability>
|
6 |
<license>MITL</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
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>More reliable way to track orders and product metadata.</notes>
|
12 |
<authors><author><name>Roeland van Oostenbrugge</name><user>converdo</user><email>roeland@converdo.nl</email></author></authors>
|
13 |
-
<date>2017-04-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Converdo"><dir name="Common"><dir name="API"><file name="ConverdoAPI.php" hash="432539ea2f6388eb6e067dd689676054"/><file name="ConverdoClient.php" hash="225a611b5f2c5523a40ee20749c71b72"/><dir name="Factories"><file name="OrderFactory.php" hash="f3718d7811896d18ade13c77826fc910"/></dir><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="7b9a3341c1db50b44eac0d7f207f35f0"/><dir name="Sections"><file name="ConverdoOrderAPI.php" hash="0865ae8e4c4d49b60e96e73c62e7c59a"/></dir></dir><dir name="Config"><file name="Configuration.php" hash="3a049fae7651c4a99b718b8f407001ec"/><dir name="Contracts"><file name="PlatformConfigurationContract.php" hash="a81b3b6f3d95a1d295aa4655d89ea4c7"/></dir></dir><dir name="Container"><file name="Container.php" hash="b5397c8e26370c051cc78d6e6f1fd1d9"/></dir><dir name="Controllers"><file name="PingController.php" hash="31bd42531725c49273f5f2dc4793c4ac"/></dir><dir name="Cookie"><dir name="Factories"><file name="CookieFactory.php" hash="a2f67fc875f3bead010019f0ca9c8562"/></dir><dir name="Managers"><file name="CookieManager.php" hash="7c47484c5c0bb99c11f67a1adbfacad5"/></dir><dir name="Models"><dir name="Contracts"><file name="CookieInterface.php" hash="87c4d60b8cd462d41256b536b950d6f4"/></dir><file name="Cookie.php" hash="f4281cb4f6cf64739c47934089787e28"/></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="Logger.php" hash="51f3a0097798660f2cc0e24064a7c7d7"/><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="c00d29114e972a7dc24a666a110f1dbf"/></dir></dir><dir name="Query"><dir name="Managers"><file name="QueryManager.php" hash="84426e2fe1bd199d2138cb5b160b2eb3"/><file name="QueryMetadata.php" hash="f1d4df587d00c72c1979194e2cad652c"/></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="fc17566a13fbb5dbada30d4a484b1c10"/><file name="AddEcommerceItem.php" hash="fa06f091d857da316b88ca478659ab12"/><file name="CategoryView.php" hash="ef1ea971183dd860f3691a04a17a29a5"/><dir name="Contracts"><file name="QueryInterface.php" hash="fb92b5d11d99cfbff66af5596032fc13"/></dir><file name="CustomVariable.php" hash="6da73fa0855929c82b48832665304478"/><file name="EcommerceView.php" hash="
|
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.5.52</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>MITL</license>
|
7 |
<channel>community</channel>
|
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>More reliable way to track orders and product metadata.</notes>
|
12 |
<authors><author><name>Roeland van Oostenbrugge</name><user>converdo</user><email>roeland@converdo.nl</email></author></authors>
|
13 |
+
<date>2017-04-13</date>
|
14 |
+
<time>09:02:53</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Converdo"><dir name="Common"><dir name="API"><file name="ConverdoAPI.php" hash="432539ea2f6388eb6e067dd689676054"/><file name="ConverdoClient.php" hash="225a611b5f2c5523a40ee20749c71b72"/><dir name="Factories"><file name="OrderFactory.php" hash="f3718d7811896d18ade13c77826fc910"/></dir><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="7b9a3341c1db50b44eac0d7f207f35f0"/><dir name="Sections"><file name="ConverdoOrderAPI.php" hash="0865ae8e4c4d49b60e96e73c62e7c59a"/></dir></dir><dir name="Config"><file name="Configuration.php" hash="3a049fae7651c4a99b718b8f407001ec"/><dir name="Contracts"><file name="PlatformConfigurationContract.php" hash="a81b3b6f3d95a1d295aa4655d89ea4c7"/></dir></dir><dir name="Container"><file name="Container.php" hash="b5397c8e26370c051cc78d6e6f1fd1d9"/></dir><dir name="Controllers"><file name="PingController.php" hash="31bd42531725c49273f5f2dc4793c4ac"/></dir><dir name="Cookie"><dir name="Factories"><file name="CookieFactory.php" hash="a2f67fc875f3bead010019f0ca9c8562"/></dir><dir name="Managers"><file name="CookieManager.php" hash="7c47484c5c0bb99c11f67a1adbfacad5"/></dir><dir name="Models"><dir name="Contracts"><file name="CookieInterface.php" hash="87c4d60b8cd462d41256b536b950d6f4"/></dir><file name="Cookie.php" hash="f4281cb4f6cf64739c47934089787e28"/></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="Logger.php" hash="51f3a0097798660f2cc0e24064a7c7d7"/><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="c00d29114e972a7dc24a666a110f1dbf"/></dir></dir><dir name="Query"><dir name="Managers"><file name="QueryManager.php" hash="84426e2fe1bd199d2138cb5b160b2eb3"/><file name="QueryMetadata.php" hash="f1d4df587d00c72c1979194e2cad652c"/></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="fc17566a13fbb5dbada30d4a484b1c10"/><file name="AddEcommerceItem.php" hash="fa06f091d857da316b88ca478659ab12"/><file name="CategoryView.php" hash="ef1ea971183dd860f3691a04a17a29a5"/><dir name="Contracts"><file name="QueryInterface.php" hash="fb92b5d11d99cfbff66af5596032fc13"/></dir><file name="CustomVariable.php" hash="6da73fa0855929c82b48832665304478"/><file name="EcommerceView.php" hash="c12180499dccb8bcf221f25d5f3a5e97"/><file name="EnableHeartBeatTimer.php" hash="ae8f29109aa092e5df3219806e20e3a5"/><file name="EnableLinkTracking.php" hash="16eb04587eb0bb1874b1c2bc3b1a3f3e"/><file name="SiteId.php" hash="b1d7890e673d8c958c763e7a3f5d1119"/><file name="TrackEcommerceCart.php" hash="801ad3399b238cc947d51da246dc4755"/><file name="TrackPageView.php" hash="e554c9f7b893148985a6e93772afa760"/><file name="TrackSiteSearch.php" hash="06446020dae5ff4e2d9b4f1e612f9c70"/><file name="TrackerUrl.php" hash="7813ff69d8f76921c442895bdd9d4f5f"/></dir></dir><dir name="Response"><file name="JsonResponse.php" hash="d3a4ff6984e2378d74f8afe007ea1d8d"/><file name="Response.php" hash="a4fb3927099ee5e69ea869b464039fd6"/></dir><dir name="Security"><file name="Crypt.php" hash="d0f67307ef26d6691c72c702b7fcf3f2"/></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="af11b44634fe2910a75c94e58c9e842b"/><file name="bootstrap.php" hash="2ddcf1ff10a3cb32f3613b806f0d4427"/><file name="config.php" hash="13de96b66211ba832d0c359bacd2bc4c"/><file name="dependencies.php" hash="e35bc74ed0d628cc007581178881854c"/><file name="functions.php" hash="1ec63ac646838220bfd7c04e536a5fd4"/></dir><dir name="Magento"><dir name="Block"><file name="Tracker.php" hash="6d883c0fdc6d8768bfe4465b7006d570"/></dir><dir name="Config"><file name="Configuration.php" hash="8872732a1e15fe6e77359770abd8d4fb"/></dir><dir name="Container"><file name="Bindings.php" hash="25bfa222ea8ce66da2b50a6cc9c48ac0"/></dir><dir name="Factories"><file name="EcommerceCartFactory.php" hash="43ce610668ad865ddaaa5dfce6420e93"/><file name="EcommerceCategoryFactory.php" hash="7d21cba8d68be5bccb4f6387badb8674"/><file name="EcommerceItemFactory.php" hash="bedf9b354ee73443170e2310433f3734"/><file name="EcommerceSearchFactory.php" hash="ea08378e24f27567abb3ae85f500e658"/></dir><dir name="Helper"><file name="Data.php" hash="5b2572fbbd9d6acfe1907830ab883a19"/></dir><dir name="Model"><file name="Observer.php" hash="798074982172e7d8c14a13b5e7ee7c9f"/></dir><dir name="Page"><file name="RouteResolver.php" hash="fe9952398586e39679c85092ea03f013"/></dir><dir name="Support"><file name="PriceHelper.php" hash="375c5f44c2c9b90618919412e235e961"/></dir><dir name="controllers"><file name="PingController.php" hash="7649748a504168df69239daed1a96418"/></dir><dir name="etc"><file name="adminhtml.xml" hash="9923bfe8c0f4aa318166e15cd373cf09"/><file name="config.xml" hash="70efd7841ee81f9b3e0d608b8ad7885e"/><file name="system.xml" hash="f45bc8eac0bd50a4ca12241d01c19322"/></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_Magento.csv" hash=""/></dir><dir name="nl_NL"><file name="Converdo_Magento.csv" hash=""/></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>
|