xref: /dokuwiki/inc/Ui/Ui.php (revision c6daab83c8d37bb6c8937ed99d8a9261b18cc1e1)
1<?php
2namespace dokuwiki\Ui;
3
4/**
5 * Class Ui
6 *
7 * Abstract 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