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

Menu.php « ExampleUI « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b5f1bcfea3cbe59010b73c3a9c6e6c1f69893a7 (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
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */
namespace Piwik\Plugins\ExampleUI;

use Piwik\Menu\MenuReporting;
use Piwik\Menu\MenuUser;
use Piwik\Plugin\Manager as PluginManager;

/**
 */
class Menu extends \Piwik\Plugin\Menu
{
    public function configureReportingMenu(MenuReporting $menu)
    {
        $menu->add('UI Framework', '', array('module' => 'ExampleUI', 'action' => 'dataTables'), true, 30);

        $this->addSubMenu($menu, 'Data tables', 'dataTables', 1);
        $this->addSubMenu($menu, 'Bar graph', 'barGraph', 2);
        $this->addSubMenu($menu, 'Pie graph', 'pieGraph', 3);
        $this->addSubMenu($menu, 'Tag clouds', 'tagClouds', 4);
        $this->addSubMenu($menu, 'Sparklines', 'sparklines', 5);
        $this->addSubMenu($menu, 'Evolution Graph', 'evolutionGraph', 6);

        if (PluginManager::getInstance()->isPluginActivated('TreemapVisualization')) {
            $this->addSubMenu($menu, 'Treemap', 'treemap', 7);
        }
    }

    public function configureUserMenu(MenuUser $menu)
    {
        $urlParams = array('module' => 'ExampleUI', 'action' => 'notifications');
        $menu->addPlatformItem('UI Notifications', $urlParams, $order = 3);
    }

    private function addSubMenu(MenuReporting $menu, $subMenu, $action, $order)
    {
        $menu->add('UI Framework', $subMenu, array('module' => 'ExampleUI', 'action' => $action), true, $order);
    }
}