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