dockerwiki/content/inc/Menu/UserMenu.php

22 lines
284 B
PHP
Raw Permalink Normal View History

2021-10-26 13:02:53 +02:00
<?php
namespace dokuwiki\Menu;
/**
* Class UserMenu
*
* Actions related to the current user
*/
class UserMenu extends AbstractMenu {
protected $view = 'user';
protected $types = array(
'Profile',
'Admin',
'Register',
'Login',
);
}