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.
 
 
 
 
 

21 lines
261 B

  1. <?php
  2. namespace dokuwiki\Ui;
  3. /**
  4. * Class Ui
  5. *
  6. * Abstract base class for all DokuWiki screens
  7. *
  8. * @package dokuwiki\Ui
  9. */
  10. abstract class Ui
  11. {
  12. /**
  13. * Display the UI element
  14. *
  15. * @return void
  16. */
  17. abstract public function show();
  18. }