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.
 
 
 
 
 

23 lines
425 B

  1. <?php
  2. namespace dokuwiki\template\bootstrap3\Menu;
  3. /**
  4. * Class PageIconsMenu
  5. *
  6. * Actions manipulating the current page. Shown as a floating menu in the dokuwiki template
  7. */
  8. class PageIconsMenu extends \dokuwiki\Menu\AbstractMenu
  9. {
  10. protected $view = 'pageicons';
  11. protected $types = array(
  12. 'ShareOn',
  13. 'Feed',
  14. 'SendMail',
  15. 'PrintPage',
  16. 'Permalink',
  17. 'Help',
  18. );
  19. }