xref: /dokuwiki/inc/Menu/Item/Profile.php (revision 33b91513e25639a6c7eb35668484d29098f7c9b4)
193b8c351SAndreas Gohr<?php
293b8c351SAndreas Gohr
393b8c351SAndreas Gohrnamespace dokuwiki\Menu\Item;
493b8c351SAndreas Gohr
5368ce258SAndreas Gohr/**
6368ce258SAndreas Gohr * Class Profile
7368ce258SAndreas Gohr *
8368ce258SAndreas Gohr * Open the user's profile
9368ce258SAndreas Gohr */
10*33b91513SAndreas Gohrclass Profile extends AbstractItem
11*33b91513SAndreas Gohr{
1293b8c351SAndreas Gohr
1393b8c351SAndreas Gohr    /** @inheritdoc */
14*33b91513SAndreas Gohr    public function __construct()
15*33b91513SAndreas Gohr    {
1693b8c351SAndreas Gohr        global $INPUT;
1793b8c351SAndreas Gohr        parent::__construct();
1893b8c351SAndreas Gohr
1993b8c351SAndreas Gohr        if (!$INPUT->server->str('REMOTE_USER')) {
2093b8c351SAndreas Gohr            throw new \RuntimeException("profile is only for logged in users");
2193b8c351SAndreas Gohr        }
224bb2fc4aSAndreas Gohr
234bb2fc4aSAndreas Gohr        $this->svg = DOKU_INC . 'lib/images/menu/account-card-details.svg';
2493b8c351SAndreas Gohr    }
2593b8c351SAndreas Gohr
2693b8c351SAndreas Gohr}
27