xref: /dokuwiki/inc/Menu/UserMenu.php (revision 589a4f073ab1e6b4304c2507274af28b7aea5dc9)
1<?php
2
3namespace dokuwiki\Menu;
4
5/**
6 * Class UserMenu
7 *
8 * Actions related to the current user
9 */
10class UserMenu extends AbstractMenu
11{
12    protected $view = 'user';
13
14    protected $types = ['Profile', 'Admin', 'Register', 'Login'];
15}
16