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