🤖 Rector and PHPCS fixes
[dokuwiki.git] / inc / Action / Index.php
blob5a2120d76fcbb99a247a5ccf65d876431ab17d3b
1 <?php
3 namespace dokuwiki\Action;
5 use dokuwiki\Ui;
7 /**
8 * Class Index
10 * Show the human readable sitemap. Do not confuse with Sitemap
12 * @package dokuwiki\Action
14 class Index extends AbstractAction
16 /** @inheritdoc */
17 public function minimumPermission()
19 return AUTH_NONE;
22 /** @inheritdoc */
23 public function tplContent()
25 global $IDX;
26 (new Ui\Index($IDX))->show();