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:
authormattab <matthieu.aubry@gmail.com>2013-11-04 10:40:57 +0400
committermattab <matthieu.aubry@gmail.com>2013-11-04 10:40:57 +0400
commit3ffd63639ddbcc1be6606213b4b582c560e50b45 (patch)
treeb09f11e4a4f98599cf3a0d3361f0db412aa14a38 /core/ArchiveProcessor.php
parent889dbfd680819f8873f0442bbd21bd81d26d6745 (diff)
Renaming archiveDay -> aggregateDayReport and archivePeriod -> aggregateMultipleReports
Diffstat (limited to 'core/ArchiveProcessor.php')
-rw-r--r--core/ArchiveProcessor.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/ArchiveProcessor.php b/core/ArchiveProcessor.php
index a9a96b2b3f..b15eae075d 100644
--- a/core/ArchiveProcessor.php
+++ b/core/ArchiveProcessor.php
@@ -53,7 +53,7 @@ use Piwik\Period;
* **Inserting numeric data**
*
* // function in an Archiver descendent
- * public function archiveDay(ArchiveProcessor\Day $archiveProcessor)
+ * public function aggregateDayReport(ArchiveProcessor\Day $archiveProcessor)
* {
* $myFancyMetric = // ... calculate the metric value ...
* $archiveProcessor->insertNumericRecord('MyPlugin_myFancyMetric', $myFancyMetric);
@@ -62,7 +62,7 @@ use Piwik\Period;
* **Inserting serialized DataTables**
*
* // function in an Archiver descendent
- * public function archiveDay(ArchiveProcessor\Day $archiveProcessor)
+ * public function aggregateDayReport(ArchiveProcessor\Day $archiveProcessor)
* {
* $maxRowsInTable = Config::getInstance()->General['datatable_archiving_maximum_rows_standard'];j
*