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
442 B

  1. <?php
  2. namespace dokuwiki\Action;
  3. use dokuwiki\Ui;
  4. /**
  5. * Class Index
  6. *
  7. * Show the human readable sitemap. Do not confuse with Sitemap
  8. *
  9. * @package dokuwiki\Action
  10. */
  11. class Index extends AbstractAction
  12. {
  13. /** @inheritdoc */
  14. public function minimumPermission()
  15. {
  16. return AUTH_NONE;
  17. }
  18. /** @inheritdoc */
  19. public function tplContent()
  20. {
  21. global $IDX;
  22. (new Ui\Index($IDX))->show();
  23. }
  24. }