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

namespace dokuwiki\Menu;

class UserMenu extends AbstractMenu {

    protected $view = 'user';

    protected $types = array(
        'Login',
        'Register',
        'Profile',
        'Admin'
    );

}