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.
 
 
 
 
 

17 lines
302 B

  1. <?php
  2. namespace dokuwiki\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 AbstractMenu
  10. {
  11. protected $view = 'detail';
  12. protected $types = ['MediaManager', 'ImgBackto', 'Top'];
  13. }