xref: /dokuwiki/inc/Menu/SiteMenu.php (revision e3c3abf1ebade68a06abb03d098d58afda87b317)
1<?php
2
3namespace 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 */
10class SiteMenu extends AbstractMenu
11{
12
13    protected $view = 'site';
14
15    protected $types = ['Recent', 'Media', 'Index'];
16
17}
18