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@googlemail.com>2014-02-28 07:20:41 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-02-28 07:20:41 +0400
commit3055a6571d93272d72a5eb3201bf797577c63488 (patch)
tree7c88f98495655758e9c122e2e65eb79102e809af /core/DataTable/Filter/CalculateEvolutionFilter.php
parentdb6199d21047c042ca337f7a86b314a81a0488d2 (diff)
refs #57 started to work on displaying Insights. Added a widget for the dashboard and a new Insights visualization. More to come... still early version so expect a lot of things to change but I am still happy about feedback
Diffstat (limited to 'core/DataTable/Filter/CalculateEvolutionFilter.php')
-rwxr-xr-xcore/DataTable/Filter/CalculateEvolutionFilter.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/DataTable/Filter/CalculateEvolutionFilter.php b/core/DataTable/Filter/CalculateEvolutionFilter.php
index 7328245ab6..24c8612185 100755
--- a/core/DataTable/Filter/CalculateEvolutionFilter.php
+++ b/core/DataTable/Filter/CalculateEvolutionFilter.php
@@ -34,12 +34,12 @@ class CalculateEvolutionFilter extends ColumnCallbackAddColumnPercentage
*
* @var DataTable
*/
- private $pastDataTable;
+ protected $pastDataTable;
/**
* Tells if column being added is the revenue evolution column.
*/
- private $isRevenueEvolution = null;
+ protected $isRevenueEvolution = null;
/**
* Constructor.
@@ -130,7 +130,7 @@ class CalculateEvolutionFilter extends ColumnCallbackAddColumnPercentage
* @param Row $row The row in the 'current' DataTable.
* @return bool|Row
*/
- private function getPastRowFromCurrent($row)
+ protected function getPastRowFromCurrent($row)
{
return $this->pastDataTable->getRowFromLabel($row->getColumn('label'));
}