Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Processed.php « Metrics « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 204604fb315f5ce5b01acd81ee88b7b85b94ab38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */
namespace Piwik\Metrics;

use Piwik\Metrics;
use Piwik\DataTable\Row;
use Piwik\DataTable;
use Piwik\Piwik;
use Piwik\Tracker\GoalManager;

class Processed extends Base
{

    public function getConversionRate(Row $row)
    {
        $nbVisits = $this->getNumVisits($row);

        $nbVisitsConverted = (int) $this->getColumn($row, Metrics::INDEX_NB_VISITS_CONVERTED);
        if ($nbVisitsConverted > 0) {
            $conversionRate = round(100 * $nbVisitsConverted / $nbVisits, $this->roundPrecision);

            return $conversionRate . '%';
        }
    }

    public function getActionsPerVisit(Row $row)
    {
        $nbVisits  = $this->getNumVisits($row);
        $nbActions = $this->getColumn($row, Metrics::INDEX_NB_ACTIONS);

        if ($nbVisits == 0) {
            return $this->invalidDivision;
        }

        return round($nbActions / $nbVisits, $this->roundPrecision);
    }

    public function getAvgTimeOnSite(Row $row)
    {
        $nbVisits = $this->getNumVisits($row);

        if ($nbVisits == 0) {
            return $this->invalidDivision;
        }

        $visitLength = $this->getColumn($row, Metrics::INDEX_SUM_VISIT_LENGTH);

        return round($visitLength / $nbVisits, $rounding = 0);
    }

    public function getBounceRate(Row $row)
    {
        $nbVisits = $this->getNumVisits($row);

        if ($nbVisits == 0) {
            return $this->invalidDivision;
        }

        $bounceRate = round(100 * $this->getColumn($row, Metrics::INDEX_BOUNCE_COUNT) / $nbVisits, $this->roundPrecision);

        return $bounceRate . "%";
    }

}