Index.php 443 B

1234567891011121314151617181920212223242526272829
  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. }