You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

29 lines
433 B

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