Piwik\Plugins\CoreHome\Controller::makeRowEvolution PHP Method

makeRowEvolution() private method

Utility function. Creates a RowEvolution instance.
private makeRowEvolution ( $isMultiRowEvolution, $graphType = null )
    private function makeRowEvolution($isMultiRowEvolution, $graphType = null)
    {
        if ($isMultiRowEvolution) {
            return new MultiRowEvolution($this->idSite, $this->date, $graphType);
        } else {
            return new RowEvolution($this->idSite, $this->date, $graphType);
        }
    }