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