[ Index ] |
PHP Cross Reference of DokuWiki |
[Summary view] [Print] [Text view]
1 <?php 2 3 namespace dokuwiki\Menu\Item; 4 5 /** 6 * Class Profile 7 * 8 * Open the user's profile 9 */ 10 class Profile extends AbstractItem { 11 12 /** @inheritdoc */ 13 public function __construct() { 14 global $INPUT; 15 parent::__construct(); 16 17 if(!$INPUT->server->str('REMOTE_USER')) { 18 throw new \RuntimeException("profile is only for logged in users"); 19 } 20 21 $this->svg = DOKU_INC . 'lib/images/menu/account-card-details.svg'; 22 } 23 24 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body