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-21 01:06:47 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-10-21 01:06:47 +0400
commit2560e83517536859ca62440c14b04ec9db2af00e (patch)
tree6edea6ec0752aa562d85cc4a45655cbe0e867d54 /plugins/DBStats/DBStats.php
parent37fc1f1cd10dfef86ac429af0f6254436d0d6ccb (diff)
It was confusing to have a coreViewDataTable and pluginViewDataTable class. In addition the coreViewDataTable did two things: Instance creation and managing all viewDataTables --> two new classes
Diffstat (limited to 'plugins/DBStats/DBStats.php')
-rw-r--r--plugins/DBStats/DBStats.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/DBStats/DBStats.php b/plugins/DBStats/DBStats.php
index 0a1c2b29d3..63f9f439f5 100644
--- a/plugins/DBStats/DBStats.php
+++ b/plugins/DBStats/DBStats.php
@@ -37,11 +37,11 @@ class DBStats extends \Piwik\Plugin
public function getListHooksRegistered()
{
return array(
- 'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
- 'Menu.Admin.addItems' => 'addMenu',
- 'TaskScheduler.getScheduledTasks' => 'getScheduledTasks',
- 'ViewDataTable.configure' => 'configureViewDataTable',
- 'Visualization.getDefaultTypeViewDataTable' => 'getDefaultTypeViewDataTable'
+ 'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
+ 'Menu.Admin.addItems' => 'addMenu',
+ 'TaskScheduler.getScheduledTasks' => 'getScheduledTasks',
+ 'ViewDataTable.configure' => 'configureViewDataTable',
+ 'ViewDataTable.getDefaultType' => 'getDefaultTypeViewDataTable'
);
}