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.
 
 
 
 
 

26 lines
355 B

  1. <?php
  2. namespace dokuwiki\Action;
  3. /**
  4. * Class Media
  5. *
  6. * The full screen media manager
  7. *
  8. * @package dokuwiki\Action
  9. */
  10. class Media extends AbstractAction
  11. {
  12. /** @inheritdoc */
  13. public function minimumPermission()
  14. {
  15. return AUTH_READ;
  16. }
  17. /** @inheritdoc */
  18. public function tplContent()
  19. {
  20. tpl_media();
  21. }
  22. }