Backlink.php 408 B

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