1<?php
2
3namespace dokuwiki\Menu;
4
5/**
6 * Class PageMenu
7 *
8 * Actions manipulating the current page. Shown as a floating menu in the dokuwiki template
9 */
10class PageMenu extends AbstractMenu {
11
12    protected $view = 'page';
13
14    protected $types = array(
15        'Edit',
16        'Revert',
17        'Revisions',
18        'Backlink',
19        'Subscribe',
20        'Top',
21    );
22
23}
24