1*93b8c351SAndreas Gohr<?php 2*93b8c351SAndreas Gohr 3*93b8c351SAndreas Gohrnamespace dokuwiki\Menu\Item; 4*93b8c351SAndreas Gohr 5*93b8c351SAndreas Gohrclass ImgBackto extends AbstractItem { 6*93b8c351SAndreas Gohr 7*93b8c351SAndreas Gohr /** @inheritdoc */ 8*93b8c351SAndreas Gohr public function __construct() { 9*93b8c351SAndreas Gohr global $ID; 10*93b8c351SAndreas Gohr parent::__construct(); 11*93b8c351SAndreas Gohr 12*93b8c351SAndreas Gohr $this->svg = DOKU_BASE . 'lib/images/menu/12-back_arrow-left.svg'; 13*93b8c351SAndreas Gohr $this->type = 'img_backto'; 14*93b8c351SAndreas Gohr $this->params = array(); 15*93b8c351SAndreas Gohr $this->accesskey = 'b'; 16*93b8c351SAndreas Gohr $this->replacement = $ID; 17*93b8c351SAndreas Gohr } 18*93b8c351SAndreas Gohr 19*93b8c351SAndreas Gohr} 20