Piwik\Plugins\Installation\Controller::systemCheckPage PHP Method

systemCheckPage() public method

This admin tab is only viewable by the Super User.
public systemCheckPage ( )
    public function systemCheckPage()
    {
        Piwik::checkUserHasSuperUserAccess();
        $view = new View('@Installation/systemCheckPage', $this->getInstallationSteps(), __FUNCTION__);
        $this->setBasicVariablesView($view);
        /** @var DiagnosticService $diagnosticService */
        $diagnosticService = StaticContainer::get('Piwik\\Plugins\\Diagnostics\\DiagnosticService');
        $view->diagnosticReport = $diagnosticService->runDiagnostics();
        return $view->render();
    }