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/Live/Live.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/Live/Live.php')
-rw-r--r--plugins/Live/Live.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/Live/Live.php b/plugins/Live/Live.php
index 66eca4b35b..f1403c6983 100644
--- a/plugins/Live/Live.php
+++ b/plugins/Live/Live.php
@@ -31,13 +31,13 @@ class Live extends \Piwik\Plugin
public function getListHooksRegistered()
{
return array(
- 'AssetManager.getJavaScriptFiles' => 'getJsFiles',
- 'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
- 'WidgetsList.addWidgets' => 'addWidget',
- 'Menu.Reporting.addItems' => 'addMenu',
- 'ViewDataTable.configure' => 'configureViewDataTable',
- 'Translate.getClientSideTranslationKeys' => 'getClientSideTranslationKeys',
- 'Visualization.getDefaultTypeViewDataTable' => 'getDefaultTypeViewDataTable'
+ 'AssetManager.getJavaScriptFiles' => 'getJsFiles',
+ 'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
+ 'WidgetsList.addWidgets' => 'addWidget',
+ 'Menu.Reporting.addItems' => 'addMenu',
+ 'ViewDataTable.configure' => 'configureViewDataTable',
+ 'Translate.getClientSideTranslationKeys' => 'getClientSideTranslationKeys',
+ 'ViewDataTable.getDefaultType' => 'getDefaultTypeViewDataTable'
);
}