summaryrefslogtreecommitdiff
path: root/platform/www/inc/Menu/PageMenu.php
blob: 9c0a55e2d634aaebc3eb5e6492b2721768da2918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

namespace dokuwiki\Menu;

/**
 * Class PageMenu
 *
 * Actions manipulating the current page. Shown as a floating menu in the dokuwiki template
 */
class PageMenu extends AbstractMenu {

    protected $view = 'page';

    protected $types = array(
        'Edit',
        'Revert',
        'Revisions',
        'Backlink',
        'Subscribe',
        'Top',
    );

}