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 00:09:28 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-10-21 00:09:28 +0400
commita8df11a91ba252ad0627750c78f7f4cc7c354275 (patch)
treed07bac422d5ef3484ed5bc4f9235e58fb27907b8 /plugins/DBStats/DBStats.php
parente35b0622ab4ba48bdbc1537360c607d3766d2abb (diff)
getDefaultViewTypeForReports -> getDefaultTypeViewDataTable
Diffstat (limited to 'plugins/DBStats/DBStats.php')
-rw-r--r--plugins/DBStats/DBStats.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/DBStats/DBStats.php b/plugins/DBStats/DBStats.php
index 52535defda..0a1c2b29d3 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.getDefaultViewTypeForReports' => 'getDefaultViewTypeForReports'
+ 'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
+ 'Menu.Admin.addItems' => 'addMenu',
+ 'TaskScheduler.getScheduledTasks' => 'getScheduledTasks',
+ 'ViewDataTable.configure' => 'configureViewDataTable',
+ 'Visualization.getDefaultTypeViewDataTable' => 'getDefaultTypeViewDataTable'
);
}
@@ -93,7 +93,7 @@ class DBStats extends \Piwik\Plugin
return Option::get(self::TIME_OF_LAST_TASK_RUN_OPTION);
}
- public function getDefaultViewTypeForReports(&$defaultViewTypes)
+ public function getDefaultTypeViewDataTable(&$defaultViewTypes)
{
$defaultViewTypes['DBStats.getDatabaseUsageSummary'] = Pie::ID;
$defaultViewTypes['DBStats.getTrackerDataSummary'] = HtmlTable::ID;