dockerwiki/content/inc/Menu/PageMenu.php

24 lines
375 B
PHP
Raw Normal View History

2021-10-26 13:02:53 +02:00
<?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 = array(
'Edit',
'Revert',
'Revisions',
'Backlink',
'Subscribe',
'Top',
);
}