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.
 
 
 
 
 

16 lines
238 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. {
  10. protected $view = 'user';
  11. protected $types = ['Profile', 'Admin', 'Register', 'Login'];
  12. }