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:
authorThomas Steur <thomas.steur@googlemail.com>2014-06-30 00:58:49 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-06-30 00:58:49 +0400
commitcc02d05560c269fcc7d0ad75c3beabe6fb364dbe (patch)
treee66662da63189e5947b4d2def2f44c86de388f86 /plugins/CustomVariables/CustomVariables.php
parent5526d13dc7bfa38da9ca6342ad92caabc9c2b824 (diff)
fixed some tests
Diffstat (limited to 'plugins/CustomVariables/CustomVariables.php')
-rw-r--r--plugins/CustomVariables/CustomVariables.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/plugins/CustomVariables/CustomVariables.php b/plugins/CustomVariables/CustomVariables.php
index 35ab6eaf97..e667002286 100644
--- a/plugins/CustomVariables/CustomVariables.php
+++ b/plugins/CustomVariables/CustomVariables.php
@@ -28,7 +28,6 @@ class CustomVariables extends \Piwik\Plugin
public function getListHooksRegistered()
{
return array(
- 'Goals.getReportsWithGoalMetrics' => 'getReportsWithGoalMetrics',
'API.getSegmentDimensionMetadata' => 'getSegmentsMetadata'
);
}
@@ -117,16 +116,4 @@ class CustomVariables extends \Piwik\Plugin
}
}
- /**
- * Adds Goal dimensions, so that the dimensions are displayed in the UI Goal Overview page
- */
- public function getReportsWithGoalMetrics(&$dimensions)
- {
- $dimensions[] = array('category' => Piwik::translate('General_Visit'),
- 'name' => Piwik::translate('CustomVariables_CustomVariables'),
- 'module' => 'CustomVariables',
- 'action' => 'getCustomVariables',
- );
- }
-
}