xref: /dokuwiki/inc/Menu/Item/ImgBackto.php (revision e44b94a4bd0679ff22e14add34b60590fe7077d3)
193b8c351SAndreas Gohr<?php
293b8c351SAndreas Gohr
393b8c351SAndreas Gohrnamespace dokuwiki\Menu\Item;
493b8c351SAndreas Gohr
5368ce258SAndreas Gohr/**
6368ce258SAndreas Gohr * Class ImgBackto
7368ce258SAndreas Gohr *
8368ce258SAndreas Gohr * Links back to the originating page from a detail image view
9368ce258SAndreas Gohr */
1033b91513SAndreas Gohrclass ImgBackto extends AbstractItem
1133b91513SAndreas Gohr{
1293b8c351SAndreas Gohr    /** @inheritdoc */
1333b91513SAndreas Gohr    public function __construct()
1433b91513SAndreas Gohr    {
1593b8c351SAndreas Gohr        global $ID;
1693b8c351SAndreas Gohr        parent::__construct();
1793b8c351SAndreas Gohr
18*e44b94a4SAndreas Gohr        $this->svg = DOKU_INC . 'lib/images/menu/12-back_arrow-left.svg';
1993b8c351SAndreas Gohr        $this->type = 'img_backto';
2033b91513SAndreas Gohr        $this->params = [];
2193b8c351SAndreas Gohr        $this->accesskey = 'b';
2293b8c351SAndreas Gohr        $this->replacement = $ID;
2393b8c351SAndreas Gohr    }
2493b8c351SAndreas Gohr}
25