xref: /dokuwiki/inc/Menu/PageMenu.php (revision 33b91513e25639a6c7eb35668484d29098f7c9b4)
193b8c351SAndreas Gohr<?php
293b8c351SAndreas Gohr
393b8c351SAndreas Gohrnamespace dokuwiki\Menu;
493b8c351SAndreas Gohr
5368ce258SAndreas Gohr/**
6368ce258SAndreas Gohr * Class PageMenu
7368ce258SAndreas Gohr *
8368ce258SAndreas Gohr * Actions manipulating the current page. Shown as a floating menu in the dokuwiki template
9368ce258SAndreas Gohr */
10*33b91513SAndreas Gohrclass PageMenu extends AbstractMenu
11*33b91513SAndreas Gohr{
1293b8c351SAndreas Gohr
1393b8c351SAndreas Gohr    protected $view = 'page';
1493b8c351SAndreas Gohr
15*33b91513SAndreas Gohr    protected $types = ['Edit', 'Revert', 'Revisions', 'Backlink', 'Subscribe', 'Top'];
1693b8c351SAndreas Gohr
1793b8c351SAndreas Gohr}
18