xref: /dokuwiki/inc/Menu/Item/Profile.php (revision 3e2fa388693f117b05e78c833043887bdae5578b)
1<?php
2
3namespace dokuwiki\Menu\Item;
4
5class Profile extends AbstractItem {
6
7    /** @inheritdoc */
8    public function __construct() {
9        global $INPUT;
10        parent::__construct();
11
12        if(!$INPUT->server->str('REMOTE_USER')) {
13            throw new \RuntimeException("profile is only for logged in users");
14        }
15    }
16
17}
18