xref: /dokuwiki/inc/Menu/UserMenu.php (revision d4f83172d9533c4d84f450fe22ef630816b21d75)
193b8c351SAndreas Gohr<?php
293b8c351SAndreas Gohr
393b8c351SAndreas Gohrnamespace dokuwiki\Menu;
493b8c351SAndreas Gohr
5368ce258SAndreas Gohr/**
6368ce258SAndreas Gohr * Class UserMenu
7368ce258SAndreas Gohr *
8368ce258SAndreas Gohr * Actions related to the current user
9368ce258SAndreas Gohr */
10*33b91513SAndreas Gohrclass UserMenu extends AbstractMenu
11*33b91513SAndreas Gohr{
1293b8c351SAndreas Gohr    protected $view = 'user';
1393b8c351SAndreas Gohr
14*33b91513SAndreas Gohr    protected $types = ['Profile', 'Admin', 'Register', 'Login'];
1593b8c351SAndreas Gohr}
16