Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Installation.php « Installation « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d81de1393d8184845a9261f70537d6740800313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 * @category Piwik_Plugins
 * @package Piwik_Installation
 */
use Piwik\Piwik;
use Piwik\Common;

/**
 *
 * @package Piwik_Installation
 */
class Piwik_Installation extends Piwik_Plugin
{
    protected $installationControllerName = 'Piwik_Installation_Controller';

    /**
     * @see Piwik_Plugin::getListHooksRegistered
     */
    public function getListHooksRegistered()
    {
        $hooks = array(
            'FrontController.NoConfigurationFile'  => 'dispatch',
            'FrontController.badConfigurationFile' => 'dispatch',
            'AdminMenu.add'                        => 'addMenu',
            'AssetManager.getCssFiles'             => 'getCss',
        );
        return $hooks;
    }

    public function setControllerToLoad($newControllerName)
    {
        $this->installationControllerName = $newControllerName;
    }

    protected function getInstallationController()
    {
        return new $this->installationControllerName();
    }

    public function dispatch($exception = null)
    {
        if ($exception) {
            $message = $exception->getMessage();
        } else {
            $message = '';
        }

        Piwik_Translate::getInstance()->loadCoreTranslation();

        Piwik_PostEvent('Installation.startInstallation', array($this));

        $step = Common::getRequestVar('action', 'welcome', 'string');
        $controller = $this->getInstallationController();
        if (in_array($step, array_keys($controller->getInstallationSteps())) || $step == 'saveLanguage') {
            $controller->$step($message);
        } else {
            Piwik::exitWithErrorMessage(Piwik_Translate('Installation_NoConfigFound'));
        }

        exit;
    }

    /**
     * Adds the 'System Check' admin page if the user is the super user.
     */
    public function addMenu()
    {
        Piwik_AddAdminSubMenu('CoreAdminHome_MenuDiagnostic', 'Installation_SystemCheck',
            array('module' => 'Installation', 'action' => 'systemCheckPage'),
            $addIf = Piwik::isUserIsSuperUser(),
            $order = 15);
    }

    /**
     * Adds CSS files to list of CSS files for asset manager.
     */
    public function getCss(&$cssFiles)
    {
        $cssFiles[] = "plugins/Installation/stylesheets/systemCheckPage.less";
    }
}