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@gmail.com>2013-10-01 23:55:14 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-10-01 23:55:14 +0400
commite476ef097a7fa1b67c387fbeb2607f351293b0ec (patch)
treeb2750ad49b97f1a22a3eac1c7d992fa04b078dc7 /plugins/VisitorInterest/VisitorInterest.php
parent444d89d318718ecd5a61df804e1cd398afb6dabf (diff)
refs #4134 renamed some hooks
Diffstat (limited to 'plugins/VisitorInterest/VisitorInterest.php')
-rw-r--r--plugins/VisitorInterest/VisitorInterest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/VisitorInterest/VisitorInterest.php b/plugins/VisitorInterest/VisitorInterest.php
index 9f89e35f56..057e6c31f5 100644
--- a/plugins/VisitorInterest/VisitorInterest.php
+++ b/plugins/VisitorInterest/VisitorInterest.php
@@ -28,10 +28,10 @@ class VisitorInterest extends \Piwik\Plugin
public function getListHooksRegistered()
{
$hooks = array(
- 'ArchiveProcessing_Day.compute' => 'archiveDay',
- 'ArchiveProcessing_Period.compute' => 'archivePeriod',
- 'WidgetsList.add' => 'addWidgets',
- 'Menu.add' => 'addMenu',
+ 'ArchiveProcessor.Day.compute' => 'archiveDay',
+ 'ArchiveProcessor.Period.compute' => 'archivePeriod',
+ 'WidgetsList.addWidget' => 'addWidgets',
+ 'Menu.addMenuEntry' => 'addMenu',
'API.getReportMetadata' => 'getReportMetadata',
'ViewDataTable.getReportDisplayProperties' => 'getReportDisplayProperties',
);