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

MenuMain.php « Menu « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0421a337853c9f06b55d9cedcc83b6e06707f3bb (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
88
89
90
91
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */
namespace Piwik\Menu;
use Piwik\Piwik;

/**
 * Contains menu entries for the Main menu (the menu displayed under the Piwik logo).
 * Plugins can subscribe to the {@hook Menu.Reporting.addItems} event to add new pages to
 * the main menu.
 * 
 * **Example**
 * 
 *     // add a new page in an observer to Menu.Admin.addItems
 *     public function addMainMenuItem()
 *     {
 *         MenuMain::getInstance()->add(
 *             'MyPlugin_MyTranslatedMenuCategory',
 *             'MyPlugin_MyTranslatedMenuName',
 *             array('module' => 'MyPlugin', 'action' => 'index'),
 *             Piwik::isUserHasSomeAdminAccess(),
 *             $order = 2
 *         );
 *     }
 * 
 * @api
 * @method static \Piwik\Menu\MenuMain getInstance()
 */
class MenuMain extends MenuAbstract
{
    /**
     * Returns if the URL was found in the menu.
     *
     * @param string $url
     * @return boolean
     */
    public function isUrlFound($url)
    {
        $menu = MenuMain::getInstance()->getMenu();

        foreach ($menu as $subMenus) {
            foreach ($subMenus as $subMenuName => $menuUrl) {
                if (strpos($subMenuName, '_') !== 0 && $menuUrl['_url'] == $url) {
                    return true;
                }
            }
        }
        return false;
    }

    /**
     * Triggers the Menu.Reporting.addItems hook and returns the menu.
     *
     * @return Array
     */
    public function getMenu()
    {
        // We trigger the Event only once!
        if (!$this->menu) {

            /**
             * Triggered when collecting all available reporting menu items. Subscribe to this event if you
             * want to add one or more items to the Piwik reporting menu.
             * 
             * Menu items should be added via the {@link add()} method.
             *
             * **Example**
             * 
             *     use Piwik\Menu\MenuMain;
             * 
             *     public function addMenuItems()
             *     {
             *         MenuMain::getInstance()->add(
             *             'CustomMenuName',
             *             'CustomSubmenuName',
             *             array('module' => 'MyPlugin', 'action' => 'index'),
             *             $showOnlyIf = Piwik::hasUserSuperUserAccess(),
             *             $order = 6
             *         );
             *     }
             */
            Piwik::postEvent('Menu.Reporting.addItems', array($this));
        }
        return parent::getMenu();
    }
}