xref: /dokuwiki/inc/Menu/Item/ImgBackto.php (revision c2b9771a2c4f3934d170bc387b7fd0137cdb2c93)
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