10470c28fSAndreas Gohr<?php 2*f9dfcbbeSSatoshi Sahara 30470c28fSAndreas Gohrnamespace dokuwiki\Ui; 40470c28fSAndreas Gohr 50470c28fSAndreas Gohr/** 60470c28fSAndreas Gohr * Class Ui 70470c28fSAndreas Gohr * 8ad4b3247SAndreas Gohr * Abstract base class for all DokuWiki screens 90470c28fSAndreas Gohr * 100470c28fSAndreas Gohr * @package dokuwiki\Ui 110470c28fSAndreas Gohr */ 12*f9dfcbbeSSatoshi Saharaabstract class Ui 13*f9dfcbbeSSatoshi Sahara{ 140470c28fSAndreas Gohr /** 150470c28fSAndreas Gohr * Display the UI element 160470c28fSAndreas Gohr * 170470c28fSAndreas Gohr * @return void 180470c28fSAndreas Gohr */ 190470c28fSAndreas Gohr abstract public function show(); 200470c28fSAndreas Gohr} 21