xref: /dokuwiki/inc/Menu/Item/Backlink.php (revision e3c3abf1ebade68a06abb03d098d58afda87b317)
1<?php
2
3namespace dokuwiki\Menu\Item;
4
5/**
6 * Class Backlink
7 *
8 * Shows the backlinks for the current page
9 */
10class Backlink extends AbstractItem
11{
12
13    /** @inheritdoc */
14    public function __construct()
15    {
16        parent::__construct();
17        $this->svg = DOKU_INC . 'lib/images/menu/08-backlink_link-variant.svg';
18    }
19
20}
21