xref: /dokuwiki/inc/Action/Backlink.php (revision ab680a25726a9d420607ee3f64208d3fad7218b0)
1*ab680a25SAndreas Gohr<?php
2*ab680a25SAndreas Gohr
3*ab680a25SAndreas Gohrnamespace dokuwiki\Action;
4*ab680a25SAndreas Gohr
5*ab680a25SAndreas Gohr/**
6*ab680a25SAndreas Gohr * Class Backlink
7*ab680a25SAndreas Gohr *
8*ab680a25SAndreas Gohr * Shows which pages link to the current page
9*ab680a25SAndreas Gohr *
10*ab680a25SAndreas Gohr * @package dokuwiki\Action
11*ab680a25SAndreas Gohr */
12*ab680a25SAndreas Gohrclass Backlink extends AbstractAction {
13*ab680a25SAndreas Gohr
14*ab680a25SAndreas Gohr    /** @inheritdoc */
15*ab680a25SAndreas Gohr    function minimumPermission() {
16*ab680a25SAndreas Gohr        return AUTH_NONE;
17*ab680a25SAndreas Gohr    }
18*ab680a25SAndreas Gohr
19*ab680a25SAndreas Gohr    /** @inheritdoc */
20*ab680a25SAndreas Gohr    public function tplContent() {
21*ab680a25SAndreas Gohr        html_backlinks();
22*ab680a25SAndreas Gohr    }
23*ab680a25SAndreas Gohr
24*ab680a25SAndreas Gohr}
25