[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/Action/ -> Index.php (source)

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