xref: /dokuwiki/inc/Menu/PageMenu.php (revision 8c7c53b0321a3cd3116b8d3b2ad27863a38dece7)
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