xref: /dokuwiki/inc/Menu/Item/ImgBackto.php (revision c6daab83c8d37bb6c8937ed99d8a9261b18cc1e1)
1<?php
2
3namespace dokuwiki\Menu\Item;
4
5/**
6 * Class ImgBackto
7 *
8 * Links back to the originating page from a detail image view
9 */
10class ImgBackto extends AbstractItem {
11
12    /** @inheritdoc */
13    public function __construct() {
14        global $ID;
15        parent::__construct();
16
17        $this->svg = DOKU_INC . 'lib/images/menu/12-back_arrow-left.svg';
18        $this->type = 'img_backto';
19        $this->params = array();
20        $this->accesskey = 'b';
21        $this->replacement = $ID;
22    }
23
24}
25