SiteMenu.php 312 B

1234567891011121314151617181920
  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. protected $view = 'site';
  10. protected $types = array(
  11. 'Recent',
  12. 'Media',
  13. 'Index'
  14. );
  15. }