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.
 
 
 
 
 

22 lines
400 B

  1. <?php
  2. namespace dokuwiki\template\bootstrap3\Menu;
  3. /**
  4. * Class DetailMenu
  5. *
  6. * This menu offers options on an image detail view. It usually displayed similar to
  7. * the PageMenu.
  8. */
  9. class DetailMenu extends \dokuwiki\Menu\AbstractMenu
  10. {
  11. protected $view = 'detail';
  12. protected $types = array(
  13. 'ImgOriginalSize',
  14. 'MediaManager',
  15. 'ImgBackto',
  16. 'Top',
  17. );
  18. }