193b8c351SAndreas Gohr<?php 293b8c351SAndreas Gohr 393b8c351SAndreas Gohrnamespace dokuwiki\Menu\Item; 493b8c351SAndreas Gohr 593b8c351SAndreas Gohrclass ImgBackto extends AbstractItem { 693b8c351SAndreas Gohr 793b8c351SAndreas Gohr /** @inheritdoc */ 893b8c351SAndreas Gohr public function __construct() { 993b8c351SAndreas Gohr global $ID; 1093b8c351SAndreas Gohr parent::__construct(); 1193b8c351SAndreas Gohr 12*c2b9771aSAndreas Gohr $this->svg = DOKU_INC . 'lib/images/menu/12-back_arrow-left.svg'; 1393b8c351SAndreas Gohr $this->type = 'img_backto'; 1493b8c351SAndreas Gohr $this->params = array(); 1593b8c351SAndreas Gohr $this->accesskey = 'b'; 1693b8c351SAndreas Gohr $this->replacement = $ID; 1793b8c351SAndreas Gohr } 1893b8c351SAndreas Gohr 1993b8c351SAndreas Gohr} 20