Piwik\Plugins\CoreHome\Controller::makeRowEvolution PHP 메소드

makeRowEvolution() 개인적인 메소드

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);
        }
    }