summaryrefslogtreecommitdiff
path: root/platform/www/inc/Menu/SiteMenu.php
blob: dba6888c7f0169d6c972452c2995afb198a2314d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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 = array(
        'Recent',
        'Media',
        'Index'
    );

}