xref: /dokuwiki/inc/Menu/SiteMenu.php (revision d87b66457eeab8e9c1cec76380d09f5a2a28e1e8)
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 = ['Recent', 'Media', 'Index'];
15}
16