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-18 05:05:49 +0400
committermattab <matthieu.aubry@gmail.com>2013-11-18 05:05:49 +0400
commit884e22d596b4b5be15fc6e33bb2403f021bfeb58 (patch)
tree9ad43b6828765571366f27a8e65114db643fa311 /plugins/Actions/API.php
parentba372fe35080bc758c43a0ffdf83cb5d5dec16ce (diff)
Refactor const to highlight their coupling #4278
Diffstat (limited to 'plugins/Actions/API.php')
-rw-r--r--plugins/Actions/API.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Actions/API.php b/plugins/Actions/API.php
index 0bd3aa66d6..0ed86ca251 100644
--- a/plugins/Actions/API.php
+++ b/plugins/Actions/API.php
@@ -351,11 +351,11 @@ class API extends \Piwik\Plugin\API
foreach ($customVariableDatatables as $key => $customVariableTableForDate) {
// we do not enter the IF, in the case idSite=1,3 AND period=day&date=datefrom,dateto,
if ($customVariableTableForDate instanceof DataTable
- && $customVariableTableForDate->getMetadata('period')
+ && $customVariableTableForDate->getMetadata(Archive\DataTableFactory::TABLE_METADATA_PERIOD_INDEX)
) {
$row = $customVariableTableForDate->getRowFromLabel($customVarNameToLookFor);
if ($row) {
- $dateRewrite = $customVariableTableForDate->getMetadata('period')->getDateStart()->toString();
+ $dateRewrite = $customVariableTableForDate->getMetadata(Archive\DataTableFactory::TABLE_METADATA_PERIOD_INDEX)->getDateStart()->toString();
$idSubtable = $row->getIdSubDataTable();
$categories = APICustomVariables::getInstance()->getCustomVariablesValuesFromNameId($idSite, $period, $dateRewrite, $idSubtable, $segment);
$dataTable->addTable($categories, $key);