xref: /dokuwiki/inc/Menu/SiteMenu.php (revision 5f43dcf4974f7308330e107a5b71027b0da739d1)
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    protected $view = 'site';
13
14    protected $types = array(
15        'Recent',
16        'Media',
17        'Index'
18    );
19
20}
21