[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/Menu/ -> SiteMenu.php (source)

   1  <?php
   2  
   3  namespace dokuwiki\Menu;
   4  
   5  /**
   6   * Class SiteMenu
   7   *
   8   * Actions that are not bound to an individual page but provide toolsfor the whole wiki.
   9   */
  10  class SiteMenu extends AbstractMenu
  11  {
  12      protected $view = 'site';
  13  
  14      protected $types = ['Recent', 'Media', 'Index'];
  15  }