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.
 
 
 
 
 

16 lines
275 B

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