xref: /dokuwiki/inc/Menu/UserMenu.php (revision ab9790ca81397622fcfd58faf56a69b68bd36257)
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
13    protected $view = 'user';
14
15    protected $types = ['Profile', 'Admin', 'Register', 'Login'];
16
17}
18