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
340 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. protected $view = 'detail';
  11. protected $types = array(
  12. 'MediaManager',
  13. 'ImgBackto',
  14. 'Top',
  15. );
  16. }