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