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

Goals.php « HtmlTable « ViewDataTable « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4fa4980d7207a47c79d7cba103bae69023ffefb5 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 * @category Piwik
 * @package Piwik
 */
use Piwik\Piwik;
use Piwik\Common;
use Piwik\Site;

/**
 * @package Piwik
 * @subpackage Piwik_ViewDataTable
 */
class Piwik_ViewDataTable_HtmlTable_Goals extends Piwik_ViewDataTable_HtmlTable
{
    protected function getViewDataTableId()
    {
        return 'tableGoals';
    }

    public function main()
    {
        $this->idSite = Common::getRequestVar('idSite', null, 'int');
        $this->processOnlyIdGoal = Common::getRequestVar('idGoal', Piwik_DataTable_Filter_AddColumnsProcessedMetricsGoal::GOALS_OVERVIEW, 'string');
        $this->isEcommerce = $this->processOnlyIdGoal == Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER;
        $this->viewProperties['show_exclude_low_population'] = true;
        $this->viewProperties['show_goals'] = true;

        if (Common::getRequestVar('documentationForGoalsPage', 0, 'int') == 1) {
            $this->setReportDocumentation(Piwik_Translate('Goals_ConversionByTypeReportDocumentation',
                array('<br />', '<br />', '<a href="http://piwik.org/docs/tracking-goals-web-analytics/" target="_blank">', '</a>')));
        }


        $this->setMetricDocumentation('nb_visits', Piwik_Translate('Goals_ColumnVisits'));
        if ($this->isEcommerce) {
            $this->setMetricDocumentation('revenue_per_visit', Piwik_Translate('Goals_ColumnRevenuePerVisitDocumentation', Piwik_Translate('General_EcommerceOrders')));
            $this->setColumnsTranslations(array(
                                               'goal_%s_conversion_rate'   => Piwik_Translate('Goals_ConversionRate'),
                                               'goal_%s_nb_conversions'    => Piwik_Translate('General_EcommerceOrders'),
                                               'goal_%s_revenue'           => Piwik_Translate('General_TotalRevenue'),
                                               'goal_%s_revenue_per_visit' => Piwik_Translate('General_ColumnValuePerVisit'),
                                               'goal_%s_avg_order_revenue' => Piwik_Translate('General_AverageOrderValue'),
                                               'goal_%s_items'             => Piwik_Translate('General_PurchasedProducts'),
                                          ));
            $this->setColumnsToDisplay(array(
                                            'label',
                                            'nb_visits',
                                            'goal_%s_nb_conversions',
                                            'goal_%s_revenue',
                                            'goal_%s_conversion_rate',
                                            'goal_%s_avg_order_revenue',
                                            'goal_%s_items',
                                            'goal_%s_revenue_per_visit',
                                       ));

            // Default sort column
            $this->setSortedColumn('goal_ecommerceOrder_revenue', 'desc');
        } else {
            $this->setMetricDocumentation('revenue_per_visit', Piwik_Translate('Goals_ColumnRevenuePerVisitDocumentation', Piwik_Translate('Goals_EcommerceAndGoalsMenu')));
            $this->setColumnsTranslations(array(
                                               'goal_%s_conversion_rate'   => Piwik_Translate('Goals_ConversionRate'),
                                               'goal_%s_nb_conversions'    => Piwik_Translate('Goals_Conversions'),
                                               'goal_%s_revenue'           => '%s ' . Piwik_Translate('Goals_ColumnRevenue'),
                                               'goal_%s_revenue_per_visit' => '%s ' . Piwik_Translate('General_ColumnValuePerVisit'),

                                               'nb_conversions'            => Piwik_Translate('Goals_ColumnConversions'),
                                               'conversion_rate'           => Piwik_Translate('General_ColumnConversionRate'),
                                               'revenue'                   => Piwik_Translate('Goals_ColumnRevenue'),
                                               'revenue_per_visit'         => Piwik_Translate('General_ColumnValuePerVisit'),
                                          ));
            $this->setColumnsToDisplay(array(
                                            'label',
                                            'nb_visits',
                                            'goal_%s_nb_conversions',
                                            'goal_%s_conversion_rate',
                                            'goal_%s_revenue',
                                            'goal_%s_revenue_per_visit',
                                            'revenue_per_visit',
                                       ));

            // Default sort column
            $columnsToDisplay = $this->getColumnsToDisplay();
            $columnNbConversionsCurrentGoal = $columnsToDisplay[2];
            if ($this->processOnlyIdGoal > 0
                && strpos($columnNbConversionsCurrentGoal, '_nb_conversions') !== false
            ) {
                $this->setSortedColumn($columnNbConversionsCurrentGoal, 'desc');
            }
        }

        parent::main();
    }

    public function disableSubTableWhenShowGoals()
    {
        $this->controllerActionCalledWhenRequestSubTable = null;
    }

    public function setColumnsToDisplay($columnsNames)
    {
        $newColumnsNames = array();
        $goals = array();
        $idSite = $this->getIdSite();
        if ($idSite) {
            $goals = Piwik_Goals_API::getInstance()->getGoals($idSite);

            $ecommerceGoal = array(
                'idgoal' => Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER,
                'name'   => Piwik_Translate('Goals_EcommerceOrder')
            );

            $site = new Site($idSite);
            //Case Ecommerce report table
            if ($this->isEcommerce) {
                $goals = array($ecommerceGoal);
            } // Case tableGoals
            elseif ($site->isEcommerceEnabled()) {
                $goals = array_merge(
                    array($ecommerceGoal),
                    $goals
                );
            }
        }
        foreach ($columnsNames as $columnName) {
            if (in_array($columnName, array(
                                           'goal_%s_conversion_rate',
                                           'goal_%s_nb_conversions',
                                           'goal_%s_revenue_per_visit',
                                           'goal_%s_revenue',
                                           'goal_%s_avg_order_revenue',
                                           'goal_%s_items',

                                      ))
            ) {
                foreach ($goals as $goal) {
                    $idgoal = $goal['idgoal'];

                    $goal['name'] = Common::unsanitizeInputValue($goal['name']);

                    if ($this->processOnlyIdGoal > Piwik_DataTable_Filter_AddColumnsProcessedMetricsGoal::GOALS_FULL_TABLE
                        && $this->processOnlyIdGoal != $idgoal
                        && !$this->isEcommerce
                    ) {
                        continue;
                    }
                    $name = Piwik_Translate($this->getColumnTranslation($columnName), $goal['name']);
                    $columnNameGoal = str_replace('%s', $idgoal, $columnName);
                    $this->setColumnTranslation($columnNameGoal, $name);
                    $this->setDynamicMetricDocumentation($columnName, $columnNameGoal, $goal['name'], $goal['idgoal']);
                    if (strpos($columnNameGoal, '_rate') === false
                        // For the goal table (when the flag icon is clicked), we only display the per Goal Conversion rate
                        && $this->processOnlyIdGoal == Piwik_DataTable_Filter_AddColumnsProcessedMetricsGoal::GOALS_OVERVIEW
                    ) {
                        continue;
                    }

                    if (strstr($columnNameGoal, '_revenue') !== false) {
                        $this->columnsToRevenueFilter[] = $columnNameGoal;
                    } else {
                        $this->columnsToConversionFilter[] = $columnNameGoal;
                    }
                    $newColumnsNames[] = $columnNameGoal;
                }
            } else {
                $newColumnsNames[] = $columnName;
            }
        }
        parent::setColumnsToDisplay($newColumnsNames);
    }

    /**
     * Find the appropriate metric documentation for a goal column
     * @param string $genericMetricName
     * @param string $metricName
     * @param string $goalName
     * @param int $idGoal
     */
    private function setDynamicMetricDocumentation($genericMetricName, $metricName, $goalName, $idGoal)
    {
        if ($idGoal == Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER) {
            $goalName = Piwik_Translate('General_EcommerceOrders');
        } else {
            $goalName = '"' . $goalName . '"';
        }

        $langString = false;
        switch ($genericMetricName) {
            case 'goal_%s_nb_conversions':
                $langString = 'Goals_ColumnConversionsDocumentation';
                break;
            case 'goal_%s_conversion_rate':
                $langString = 'Goals_ColumnConversionRateDocumentation';
                break;
            case 'goal_%s_revenue_per_visit':
                $langString = 'Goals_ColumnRevenuePerVisitDocumentation';
                break;
            case 'goal_%s_revenue':
                $langString = 'Goals_ColumnRevenueDocumentation';
                break;
            case 'goal_%s_avg_order_revenue':
                $langString = 'Goals_ColumnAverageOrderRevenueDocumentation';
                break;
            case 'goal_%s_items':
                $langString = 'Goals_ColumnPurchasedProductsDocumentation';
                break;
        }

        if ($langString) {
            $doc = Piwik_Translate($langString, $goalName);
            $this->setMetricDocumentation($metricName, $doc);
        }
    }

    protected function getRequestArray()
    {
        $requestArray = parent::getRequestArray();
        if ($this->processOnlyIdGoal > Piwik_DataTable_Filter_AddColumnsProcessedMetricsGoal::GOALS_FULL_TABLE
            || $this->isEcommerce
        ) {
            $requestArray["idGoal"] = $this->processOnlyIdGoal;
        }
        $requestArray['filter_update_columns_when_show_all_goals'] = 1;
        return $requestArray;
    }

    protected $columnsToRevenueFilter = array();
    protected $columnsToConversionFilter = array();
    protected $idSite = false;

    private function getIdSite()
    {
        return $this->idSite;
    }

    protected function postDataTableLoadedFromAPI()
    {
        $valid = parent::postDataTableLoadedFromAPI();
        if ($valid === false) return false;

        foreach ($this->getColumnsToDisplay() as $columnName) {
            if (strpos($columnName, 'conversion_rate')) {
                $this->dataTable->filter('ColumnCallbackReplace', array($columnName, create_function('$rate', 'if($rate==0) return "0%"; else return $rate;')));
            }
        }
        $this->columnsToRevenueFilter[] = 'revenue_per_visit';
        foreach ($this->columnsToRevenueFilter as $columnName) {
            $this->dataTable->filter('ColumnCallbackReplace', array($columnName, create_function('$value', 'return sprintf("%.1f",$value);')));
            $this->dataTable->filter('ColumnCallbackReplace', array($columnName, array("Piwik", "getPrettyMoney"), array($this->getIdSite())));
        }

        foreach ($this->columnsToConversionFilter as $columnName) {
            // this ensures that the value is set to zero for all rows where the value was not set (no conversion)
            $this->dataTable->filter('ColumnCallbackReplace', array($columnName, create_function('$value', 'return $value;')));
        }
        return true;
    }

    public function getDefaultDataTableCssClass()
    {
        return 'dataTableGoals';
    }
}