You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
284 B

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