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