1<?php 2 3namespace dokuwiki\Menu\Item; 4 5/** 6 * Class Login 7 * 8 * Show a login or logout item, based on the current state 9 */ 10class Login extends AbstractItem { 11 12 protected $svg = DOKU_INC . 'lib/images/menu/login.svg'; 13 14 /** @inheritdoc */ 15 public function __construct() { 16 global $INPUT; 17 parent::__construct(); 18 19 $this->params['sectok'] = getSecurityToken(); 20 if($INPUT->server->has('REMOTE_USER')) { 21 if(!actionOK('logout')) { 22 throw new \RuntimeException("logout disabled"); 23 } 24 $this->params['do'] = 'logout'; 25 $this->type = 'logout'; 26 $this->svg = DOKU_INC . 'lib/images/menu/logout.svg'; 27 } 28 } 29 30} 31