1<?php 2 3namespace dokuwiki\Action; 4 5use dokuwiki\Ui\Backlinks; 6use dokuwiki\Ui; 7 8/** 9 * Class Backlink 10 * 11 * Shows which pages link to the current page 12 * 13 * @package dokuwiki\Action 14 */ 15class 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