You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
313 B

  1. <?php
  2. namespace dokuwiki\Menu;
  3. /**
  4. * Class PageMenu
  5. *
  6. * Actions manipulating the current page. Shown as a floating menu in the dokuwiki template
  7. */
  8. class PageMenu extends AbstractMenu
  9. {
  10. protected $view = 'page';
  11. protected $types = ['Edit', 'Revert', 'Revisions', 'Backlink', 'Subscribe', 'Top'];
  12. }