xref: /dokuwiki/inc/Action/Backlink.php (revision f998f070c8123ef9ec3a0b47fd31682a1e33eba2)
1<?php
2
3namespace dokuwiki\Action;
4
5use dokuwiki\Ui;
6
7/**
8 * Class Backlink
9 *
10 * Shows which pages link to the current page
11 *
12 * @package dokuwiki\Action
13 */
14class Backlink extends AbstractAction
15{
16    /** @inheritdoc */
17    public function minimumPermission()
18    {
19        return AUTH_NONE;
20    }
21
22    /** @inheritdoc */
23    public function tplContent()
24    {
25        (new Ui\Backlinks)->show();
26    }
27
28}
29