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:
authorsgiehl <stefan@piwik.org>2016-11-01 00:10:14 +0300
committersgiehl <stefan@piwik.org>2016-11-01 01:38:23 +0300
commit6102454146b673a16ab7f45de391e8f1ae8a096e (patch)
tree579b2a826acecd0a4fd10d5cd0b10b4e06703bf1 /core/DataTable.php
parent473c770898231f5f41048f0010ca616034877809 (diff)
Removes deprecated method Archive::getDataTableFromArchive
Diffstat (limited to 'core/DataTable.php')
-rw-r--r--core/DataTable.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/DataTable.php b/core/DataTable.php
index 1cfe92491d..ba598f3c1d 100644
--- a/core/DataTable.php
+++ b/core/DataTable.php
@@ -155,9 +155,8 @@ require_once PIWIK_INCLUDE_PATH . "/core/DataTable/Bridges.php";
*
* public function getMyReport($idSite, $period, $date, $segment = false, $expanded = false)
* {
- * $dataTable = Archive::getDataTableFromArchive('MyPlugin_MyReport', $idSite, $period, $date, $segment, $expanded);
+ * $dataTable = Archive::createDataTableFromArchive('MyPlugin_MyReport', $idSite, $period, $date, $segment, $expanded);
* $dataTable->filter('Sort', array(Metrics::INDEX_NB_VISITS, 'desc', $naturalSort = false, $expanded));
- * $dataTable->queueFilter('ReplaceColumnNames');
* $dataTable->queueFilter('ColumnCallbackAddMetadata', array('label', 'url', __NAMESPACE__ . '\getUrlFromLabelForMyReport'));
* return $dataTable;
* }