aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/Menu/PageMenu.php
blob: 2ad2196143e6aa06faa5de54c0b2b2bd04ed1d0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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 = ['Edit', 'Revert', 'Revisions', 'Backlink', 'Subscribe', 'Top'];
}