Version Notes
- Small improvements.
Download this release
Release Info
Developer | Roeland van Oostenbrugge |
Extension | Converdo_Analytics |
Version | 1.2.4.6 |
Comparing to | |
See all releases |
Code changes from version 1.2.4.5 to 1.2.4.6
- app/code/community/Converdo/Analytics/Block/Tracker.php +1 -0
- app/code/community/Converdo/Analytics/controllers/PingController.php +0 -2
- app/code/community/Converdo/Analytics/etc/config.xml +3 -3
- lib/Converdo/Tracker/Processor/AbstractProcessor.php +7 -0
- lib/Converdo/Tracker/Processor/CustomUrlProcessor.php +81 -0
- lib/Converdo/Tracker/Query/AbstractQuery.php +9 -0
- lib/Converdo/Tracker/Query/CategoryView.php +9 -0
- lib/Converdo/Tracker/Query/CustomUrl.php +32 -0
- lib/Converdo/Tracker/Query/CustomVariable.php +8 -0
- lib/Converdo/Tracker/Query/EcommerceCartUpdate.php +9 -0
- lib/Converdo/Tracker/Query/EcommerceItem.php +9 -0
- lib/Converdo/Tracker/Query/EcommerceTracking.php +9 -0
- lib/Converdo/Tracker/Query/HeartBeat.php +8 -0
- lib/Converdo/Tracker/Query/LinkTracking.php +8 -0
- lib/Converdo/Tracker/Query/PageTracking.php +8 -0
- lib/Converdo/Tracker/Query/PageView.php +8 -0
- lib/Converdo/Tracker/Query/ProductView.php +9 -0
- lib/Converdo/Tracker/Query/SiteId.php +8 -0
- lib/Converdo/Tracker/Query/TrackerUrl.php +8 -0
- package.xml +4 -4
app/code/community/Converdo/Analytics/Block/Tracker.php
CHANGED
@@ -31,6 +31,7 @@ class Converdo_Analytics_Block_Tracker extends Mage_Core_Block_Template
|
|
31 |
$processors[] = new Converdo_Tracker_Processor_CartProcessor;
|
32 |
$processors[] = new Converdo_Tracker_Processor_CheckoutProcessor;
|
33 |
$processors[] = new Converdo_Tracker_Processor_ProductViewProcessor;
|
|
|
34 |
$processors[] = new Converdo_Tracker_Processor_CategoryViewProcessor;
|
35 |
$processors[] = new Converdo_Tracker_Processor_PageViewProcessor;
|
36 |
$processors[] = new Converdo_Tracker_Processor_FootProcessor;
|
31 |
$processors[] = new Converdo_Tracker_Processor_CartProcessor;
|
32 |
$processors[] = new Converdo_Tracker_Processor_CheckoutProcessor;
|
33 |
$processors[] = new Converdo_Tracker_Processor_ProductViewProcessor;
|
34 |
+
$processors[] = new Converdo_Tracker_Processor_CustomUrlProcessor;
|
35 |
$processors[] = new Converdo_Tracker_Processor_CategoryViewProcessor;
|
36 |
$processors[] = new Converdo_Tracker_Processor_PageViewProcessor;
|
37 |
$processors[] = new Converdo_Tracker_Processor_FootProcessor;
|
app/code/community/Converdo/Analytics/controllers/PingController.php
CHANGED
@@ -41,8 +41,6 @@ class Converdo_Analytics_PingController extends Mage_Core_Controller_Front_Actio
|
|
41 |
{
|
42 |
header('Content-Type: application/json;charset=utf-8');
|
43 |
|
44 |
-
echo '<pre>';
|
45 |
-
|
46 |
echo json_encode($this->output, true);
|
47 |
}
|
48 |
}
|
41 |
{
|
42 |
header('Content-Type: application/json;charset=utf-8');
|
43 |
|
|
|
|
|
44 |
echo json_encode($this->output, true);
|
45 |
}
|
46 |
}
|
app/code/community/Converdo/Analytics/etc/config.xml
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
<config>
|
4 |
<modules>
|
5 |
<Converdo_Analytics>
|
6 |
-
<version>1.2.4.
|
7 |
</Converdo_Analytics>
|
8 |
</modules>
|
9 |
<global>
|
@@ -26,11 +26,11 @@
|
|
26 |
<frontend>
|
27 |
<translate>
|
28 |
<modules>
|
29 |
-
<
|
30 |
<files>
|
31 |
<default>Converdo_Analytics.csv</default>
|
32 |
</files>
|
33 |
-
</
|
34 |
</modules>
|
35 |
</translate>
|
36 |
<events>
|
3 |
<config>
|
4 |
<modules>
|
5 |
<Converdo_Analytics>
|
6 |
+
<version>1.2.4.6</version>
|
7 |
</Converdo_Analytics>
|
8 |
</modules>
|
9 |
<global>
|
26 |
<frontend>
|
27 |
<translate>
|
28 |
<modules>
|
29 |
+
<Converdo_Analytics>
|
30 |
<files>
|
31 |
<default>Converdo_Analytics.csv</default>
|
32 |
</files>
|
33 |
+
</Converdo_Analytics>
|
34 |
</modules>
|
35 |
</translate>
|
36 |
<events>
|
lib/Converdo/Tracker/Processor/AbstractProcessor.php
CHANGED
@@ -1,5 +1,12 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
abstract class Converdo_Tracker_Processor_AbstractProcessor
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Processor_AbstractProcessor
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
*/
|
10 |
abstract class Converdo_Tracker_Processor_AbstractProcessor
|
11 |
{
|
12 |
/**
|
lib/Converdo/Tracker/Processor/CustomUrlProcessor.php
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Converdo_Tracker_Processor_CustomUrlProcessor extends Converdo_Tracker_Processor_AbstractProcessor
|
4 |
+
{
|
5 |
+
/**
|
6 |
+
* @var Mage_Checkout_Model_Cart
|
7 |
+
*/
|
8 |
+
protected $cart;
|
9 |
+
|
10 |
+
/**
|
11 |
+
* @var Converdo_Analytics_Block_Tracker
|
12 |
+
*/
|
13 |
+
protected $trackers;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* @inheritdoc
|
17 |
+
* @param Converdo_Analytics_Block_Tracker $block
|
18 |
+
* @return bool
|
19 |
+
*/
|
20 |
+
public function responsible(Converdo_Analytics_Block_Tracker $block)
|
21 |
+
{
|
22 |
+
return $block->getRequest()->getControllerName() === 'result';
|
23 |
+
}
|
24 |
+
|
25 |
+
/**
|
26 |
+
* @inheritdoc
|
27 |
+
* @return void
|
28 |
+
*/
|
29 |
+
public function process()
|
30 |
+
{
|
31 |
+
$results = Mage::helper('catalogsearch')->getEngine()
|
32 |
+
->getResultCollection()
|
33 |
+
->addSearchFilter(Mage::helper('catalogsearch')
|
34 |
+
->getQuery()
|
35 |
+
->getQueryText())
|
36 |
+
->getSize();
|
37 |
+
|
38 |
+
$current = self::getCurrentUrl();
|
39 |
+
$query = self::getQueryString();
|
40 |
+
$count = "&search_count={$results}";
|
41 |
+
|
42 |
+
Converdo_Support_QueryParser::add(new Converdo_Tracker_Query_CustomUrl, [
|
43 |
+
0 => [Converdo_Support_QueryType::string(), "{$current}?{$query}{$count}"],
|
44 |
+
]);
|
45 |
+
}
|
46 |
+
|
47 |
+
/**
|
48 |
+
* Returns the current URL without the query string.
|
49 |
+
*
|
50 |
+
* @return string
|
51 |
+
*/
|
52 |
+
protected static function getCurrentUrl()
|
53 |
+
{
|
54 |
+
$url = self::parseUrl();
|
55 |
+
|
56 |
+
$url = $url['scheme'] . '://' . $url['host'] . (isset($url['path']) ? $url['path'] : '');
|
57 |
+
|
58 |
+
return $url;
|
59 |
+
}
|
60 |
+
|
61 |
+
/**
|
62 |
+
* Returns the current query string.
|
63 |
+
*
|
64 |
+
* @return string
|
65 |
+
*/
|
66 |
+
protected static function getQueryString()
|
67 |
+
{
|
68 |
+
$url = self::parseUrl();
|
69 |
+
|
70 |
+
return $url['query'];
|
71 |
+
}
|
72 |
+
|
73 |
+
protected static function parseUrl()
|
74 |
+
{
|
75 |
+
$url = Mage::helper('core/url')->getCurrentUrl();
|
76 |
+
|
77 |
+
$url = parse_url($url);
|
78 |
+
|
79 |
+
return $url;
|
80 |
+
}
|
81 |
+
}
|
lib/Converdo/Tracker/Query/AbstractQuery.php
CHANGED
@@ -1,5 +1,14 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
abstract class Converdo_Tracker_Query_AbstractQuery implements Converdo_Tracker_Query_Interface_QueryInterface
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_AbstractQuery
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
* @link https://piwik.org/docs/ecommerce-analytics/
|
11 |
+
*/
|
12 |
abstract class Converdo_Tracker_Query_AbstractQuery implements Converdo_Tracker_Query_Interface_QueryInterface
|
13 |
{
|
14 |
/**
|
lib/Converdo/Tracker/Query/CategoryView.php
CHANGED
@@ -1,5 +1,14 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_CategoryView extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_CategoryView
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
* @link https://piwik.org/docs/ecommerce-analytics/
|
11 |
+
*/
|
12 |
class Converdo_Tracker_Query_CategoryView extends Converdo_Tracker_Query_AbstractQuery
|
13 |
{
|
14 |
/**
|
lib/Converdo/Tracker/Query/CustomUrl.php
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_CustomUrl
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
*/
|
11 |
+
class Converdo_Tracker_Query_CustomUrl extends Converdo_Tracker_Query_AbstractQuery
|
12 |
+
{
|
13 |
+
/**
|
14 |
+
* @inheritdoc
|
15 |
+
* @return string
|
16 |
+
*/
|
17 |
+
public function view()
|
18 |
+
{
|
19 |
+
return 'setCustomUrl';
|
20 |
+
}
|
21 |
+
|
22 |
+
/**
|
23 |
+
* @inheritdoc
|
24 |
+
* @return array
|
25 |
+
*/
|
26 |
+
public function parameters()
|
27 |
+
{
|
28 |
+
return [
|
29 |
+
|
30 |
+
];
|
31 |
+
}
|
32 |
+
}
|
lib/Converdo/Tracker/Query/CustomVariable.php
CHANGED
@@ -1,5 +1,13 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_CustomVariable extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_CustomVariable
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
*/
|
11 |
class Converdo_Tracker_Query_CustomVariable extends Converdo_Tracker_Query_AbstractQuery
|
12 |
{
|
13 |
/**
|
lib/Converdo/Tracker/Query/EcommerceCartUpdate.php
CHANGED
@@ -1,5 +1,14 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_EcommerceCartUpdate extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_EcommerceCartUpdate
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
* @link https://piwik.org/docs/ecommerce-analytics/
|
11 |
+
*/
|
12 |
class Converdo_Tracker_Query_EcommerceCartUpdate extends Converdo_Tracker_Query_AbstractQuery
|
13 |
{
|
14 |
/**
|
lib/Converdo/Tracker/Query/EcommerceItem.php
CHANGED
@@ -1,5 +1,14 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_EcommerceItem extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_EcommerceItem
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
* @link https://piwik.org/docs/ecommerce-analytics/
|
11 |
+
*/
|
12 |
class Converdo_Tracker_Query_EcommerceItem extends Converdo_Tracker_Query_AbstractQuery
|
13 |
{
|
14 |
/**
|
lib/Converdo/Tracker/Query/EcommerceTracking.php
CHANGED
@@ -1,5 +1,14 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_EcommerceTracking extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_EcommerceTracking
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
* @link https://piwik.org/docs/ecommerce-analytics/
|
11 |
+
*/
|
12 |
class Converdo_Tracker_Query_EcommerceTracking extends Converdo_Tracker_Query_AbstractQuery
|
13 |
{
|
14 |
/**
|
lib/Converdo/Tracker/Query/HeartBeat.php
CHANGED
@@ -1,5 +1,13 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_HeartBeat extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_HeartBeat
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
*/
|
11 |
class Converdo_Tracker_Query_HeartBeat extends Converdo_Tracker_Query_AbstractQuery
|
12 |
{
|
13 |
/**
|
lib/Converdo/Tracker/Query/LinkTracking.php
CHANGED
@@ -1,5 +1,13 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_LinkTracking extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_LinkTracking
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
*/
|
11 |
class Converdo_Tracker_Query_LinkTracking extends Converdo_Tracker_Query_AbstractQuery
|
12 |
{
|
13 |
/**
|
lib/Converdo/Tracker/Query/PageTracking.php
CHANGED
@@ -1,5 +1,13 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_PageTracking extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_PageTracking
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
*/
|
11 |
class Converdo_Tracker_Query_PageTracking extends Converdo_Tracker_Query_AbstractQuery
|
12 |
{
|
13 |
/**
|
lib/Converdo/Tracker/Query/PageView.php
CHANGED
@@ -1,5 +1,13 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_PageView extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_PageView
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
*/
|
11 |
class Converdo_Tracker_Query_PageView extends Converdo_Tracker_Query_AbstractQuery
|
12 |
{
|
13 |
/**
|
lib/Converdo/Tracker/Query/ProductView.php
CHANGED
@@ -1,5 +1,14 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_ProductView extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_ProductView
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
* @link https://piwik.org/docs/ecommerce-analytics/
|
11 |
+
*/
|
12 |
class Converdo_Tracker_Query_ProductView extends Converdo_Tracker_Query_AbstractQuery
|
13 |
{
|
14 |
/**
|
lib/Converdo/Tracker/Query/SiteId.php
CHANGED
@@ -1,5 +1,13 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_SiteId extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_SiteId
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
*/
|
11 |
class Converdo_Tracker_Query_SiteId extends Converdo_Tracker_Query_AbstractQuery
|
12 |
{
|
13 |
/**
|
lib/Converdo/Tracker/Query/TrackerUrl.php
CHANGED
@@ -1,5 +1,13 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Converdo_Tracker_Query_TrackerUrl extends Converdo_Tracker_Query_AbstractQuery
|
4 |
{
|
5 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Class Converdo_Tracker_Query_TrackerUrl
|
5 |
+
*
|
6 |
+
* @package Converdo
|
7 |
+
* @author Marc Roosendaal <marc@converdo.nl>
|
8 |
+
* @copyright 2016 Converdo B.V.
|
9 |
+
* @link https://developer.piwik.org/api-reference/tracking-javascript
|
10 |
+
*/
|
11 |
class Converdo_Tracker_Query_TrackerUrl extends Converdo_Tracker_Query_AbstractQuery
|
12 |
{
|
13 |
/**
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Converdo_Analytics</name>
|
4 |
-
<version>1.2.4.
|
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>- Small improvements.</notes>
|
12 |
<authors><author><name>Roeland van Oostenbrugge</name><user>converdo</user><email>roeland@converdo.nl</email></author></authors>
|
13 |
-
<date>2016-12-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Converdo"><dir name="Analytics"><dir name="Block"><file name="Tracker.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>1.2.4.6</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>- Small improvements.</notes>
|
12 |
<authors><author><name>Roeland van Oostenbrugge</name><user>converdo</user><email>roeland@converdo.nl</email></author></authors>
|
13 |
+
<date>2016-12-13</date>
|
14 |
+
<time>13:58:47</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Converdo"><dir name="Analytics"><dir name="Block"><file name="Tracker.php" hash="764336768ca80603761bb53fe701d7f1"/></dir><dir name="Helper"><file name="Data.php" hash="c4d21c9630645736d2ea741d4536dd91"/></dir><dir name="Model"><file name="Observer.php" hash="0b1e93efcb995705bda3c99a136f66ae"/></dir><dir name="controllers"><file name="PingController.php" hash="98437b8791e27b3ad1db915c805b5063"/></dir><dir name="etc"><file name="adminhtml.xml" hash="9923bfe8c0f4aa318166e15cd373cf09"/><file name="config.xml" hash="7de0e72754cc55572a21b7fb6f99f6f9"/><file name="system.xml" hash="46aa892340c8cafe438979c051892002"/></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="530da01ace4c4a2c51ebb2048c3ef548"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><file name="converdoanalytics.xml" hash=""/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Converdo_Analytics.xml" hash="119a038ca81bdf03767b1b12d81414ad"/></dir></target><target name="magelib"><dir name="Converdo"><dir name="Entity"><file name="AbstractEntity.php" hash="4130576c917771fdafcb4055363b2861"/><dir name="Interface"><file name="EntityInterface.php" hash="cb6a4e6da90518a9ffa8445314de56c1"/><file name="ProductInterface.php" hash="6245b2cadfec44d4965f2d93f9241b55"/></dir><file name="Product.php" hash="bf5701920a15f6426547e0f7e1321ccd"/></dir><dir name="Support"><file name="Crypt.php" hash="265f44cafba70116f72c255dd737a805"/><file name="QueryParser.php" hash="923510ed87625afe094945b787462ef0"/><file name="QueryType.php" hash="ba9a87192c533cb0faf693f5921775c0"/><file name="StringBuilder.php" hash="282b1a3111f7cdf4c3b88f6320a8c57e"/></dir><dir name="Tracker"><dir name="Processor"><file name="AbstractProcessor.php" hash="becc5295bdaaf413995b9fe95c9b0d1e"/><file name="CartProcessor.php" hash="d2709554c310b9cbcff93d99d0a9ac4e"/><file name="CategoryViewProcessor.php" hash="7eb98e452fa38adb49d1405e3204944a"/><file name="CheckoutProcessor.php" hash="237a103653c10db36d1533fa4a9928b0"/><file name="CustomUrlProcessor.php" hash="87c6e909697fb6216014187d7fc1eb07"/><file name="CustomVariableProcessor.php" hash="e01aaec7bafce588cd229e9778a8b1c5"/><file name="FootProcessor.php" hash="b1dbccbc34a6fa541ba9e2ff0ef6adfc"/><file name="HeadProcessor.php" hash="bdf476a4bfcd18d22de9d566ca2c9911"/><dir name="Interface"><file name="ProcessorInterface.php" hash="b4d97a90b6110c09a2bac67ffa4f6634"/></dir><file name="PageViewProcessor.php" hash="cc2c4bc1e163e13a1168196dd70f526a"/><file name="ProductViewProcessor.php" hash="18e27fd54953834beb3d487c23db7027"/></dir><dir name="Query"><file name="AbstractQuery.php" hash="8133d2b672874d40f859bd042771a53a"/><file name="CategoryView.php" hash="3607b3096dca90247cc1d5e777f4ec8c"/><file name="CustomUrl.php" hash="75bac9b592363617b4156423d636ad3e"/><file name="CustomVariable.php" hash="c5a1abd4badcefa3ce9fac42d73b5789"/><file name="EcommerceCartUpdate.php" hash="67ef792a98802f4ee36afa2620a097ac"/><file name="EcommerceItem.php" hash="d1269f322fc5c4a1dbdbf9e869a0a541"/><file name="EcommerceTracking.php" hash="e065017782b22675273327dfba4fde6d"/><file name="HeartBeat.php" hash="4329afd34f622d5a5f0444a88ee1a3f7"/><dir name="Interface"><file name="QueryInterface.php" hash="5c80f20d543987cd3af1a74639fdd2ed"/></dir><file name="LinkTracking.php" hash="656ff44dd821b4167c9e5bbb10dea087"/><file name="PageTracking.php" hash="6d1c5d56750221a945b6268b6dccce05"/><file name="PageView.php" hash="f1ef5fd152710d341d476d0056e89ce4"/><file name="ProductView.php" hash="567375f931e8d93b662ca41189077a5c"/><file name="SiteId.php" hash="68e69921ca9e3a677436705d64c75b46"/><file name="TrackerUrl.php" hash="94d890dea4033fc8c1717ce3bf1861aa"/></dir></dir></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></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.5.37</min><max>7.0.5</max></php></required></dependencies>
|
18 |
</package>
|