xref: /dokuwiki/inc/Menu/PageMenu.php (revision 54cc7aa41e0f453bd6887b0e79242a139d84a47a)
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
13    protected $view = 'page';
14
15    protected $types = ['Edit', 'Revert', 'Revisions', 'Backlink', 'Subscribe', 'Top'];
16
17}
18