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