193b8c351SAndreas Gohr<?php 293b8c351SAndreas Gohr 393b8c351SAndreas Gohrnamespace dokuwiki\Menu; 493b8c351SAndreas Gohr 593b8c351SAndreas Gohrclass UserMenu extends AbstractMenu { 693b8c351SAndreas Gohr 793b8c351SAndreas Gohr protected $view = 'user'; 893b8c351SAndreas Gohr 993b8c351SAndreas Gohr protected $types = array( 1093b8c351SAndreas Gohr 'Profile', 11*b85a7f3bSAndreas Gohr 'Admin', 12*b85a7f3bSAndreas Gohr 'Register', 13*b85a7f3bSAndreas Gohr 'Login', 1493b8c351SAndreas Gohr ); 1593b8c351SAndreas Gohr 1693b8c351SAndreas Gohr} 17