Piwik\Plugins\CoreUpdater\Controller::doExecuteUpdates PHP 메소드

doExecuteUpdates() 개인적인 메소드

private doExecuteUpdates ( $view, Updater $updater, $componentsWithUpdateFile )
$updater Piwik\Updater
    private function doExecuteUpdates($view, DbUpdater $updater, $componentsWithUpdateFile)
    {
        $result = $updater->updateComponents($componentsWithUpdateFile);
        $this->coreError = $result['coreError'];
        $this->warningMessages = $result['warnings'];
        $this->errorMessages = $result['errors'];
        $this->deactivatedPlugins = $result['deactivatedPlugins'];
        $view->coreError = $this->coreError;
        $view->warningMessages = $this->warningMessages;
        $view->errorMessages = $this->errorMessages;
        $view->deactivatedPlugins = $this->deactivatedPlugins;
    }