aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/Menu/UserMenu.php
blob: b094b19372e9f62a1e5d5c89aed8d6a37d33685f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

namespace dokuwiki\Menu;

/**
 * Class UserMenu
 *
 * Actions related to the current user
 */
class UserMenu extends AbstractMenu
{
    protected $view = 'user';

    protected $types = ['Profile', 'Admin', 'Register', 'Login'];
}