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