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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CoreHome/CoreHome.php')
-rw-r--r--plugins/CoreHome/CoreHome.php24
1 files changed, 23 insertions, 1 deletions
diff --git a/plugins/CoreHome/CoreHome.php b/plugins/CoreHome/CoreHome.php
index be56c144f8..ff800ebe1e 100644
--- a/plugins/CoreHome/CoreHome.php
+++ b/plugins/CoreHome/CoreHome.php
@@ -7,6 +7,10 @@
*
*/
namespace Piwik\Plugins\CoreHome;
+use Piwik\Columns\ComputedMetricFactory;
+use Piwik\Columns\MetricsList;
+use Piwik\Plugin\ArchivedMetric;
+use Piwik\Plugin\ComputedMetric;
/**
*
@@ -21,7 +25,7 @@ class CoreHome extends \Piwik\Plugin
const WIDGET_CONTAINER_LAYOUT_BY_DIMENSION = 'ByDimension';
/**
- * @see Piwik\Plugin::registerEvents
+ * @see \Piwik\Plugin::registerEvents
*/
public function registerEvents()
{
@@ -30,9 +34,27 @@ class CoreHome extends \Piwik\Plugin
'AssetManager.getJavaScriptFiles' => 'getJsFiles',
'AssetManager.filterMergedJavaScripts' => 'filterMergedJavaScripts',
'Translate.getClientSideTranslationKeys' => 'getClientSideTranslationKeys',
+ 'Metric.addComputedMetrics' => 'addComputedMetrics'
);
}
+ public function addComputedMetrics(MetricsList $list, ComputedMetricFactory $computedMetricFactory)
+ {
+ $metrics = $list->getMetrics();
+ foreach ($metrics as $metric) {
+ if ($metric instanceof ArchivedMetric && $metric->getDimension()) {
+ $metricName = $metric->getName();
+ if ($metric->getDbTableName() === 'log_visit'
+ && $metricName !== 'nb_uniq_visitors'
+ && $metricName !== 'nb_visits'
+ && strpos($metricName, ArchivedMetric::AGGREGATION_SUM_PREFIX) === 0) {
+ $metric = $computedMetricFactory->createComputedMetric($metric->getName(), 'nb_visits', ComputedMetric::AGGREGATION_AVG);
+ $list->addMetric($metric);
+ }
+ }
+ }
+ }
+
public function filterMergedJavaScripts(&$mergedContent)
{
$mergedContent = preg_replace('/(sourceMappingURL=(.*?).map)/', '', $mergedContent);