10470c28fSAndreas Gohr<?php 20470c28fSAndreas Gohrnamespace dokuwiki\Ui; 30470c28fSAndreas Gohr 40470c28fSAndreas Gohr/** 50470c28fSAndreas Gohr * Class Ui 60470c28fSAndreas Gohr * 7*ad4b3247SAndreas Gohr * Abstract base class for all DokuWiki screens 80470c28fSAndreas Gohr * 90470c28fSAndreas Gohr * @package dokuwiki\Ui 100470c28fSAndreas Gohr */ 110470c28fSAndreas Gohrabstract class Ui { 120470c28fSAndreas Gohr 130470c28fSAndreas Gohr /** 140470c28fSAndreas Gohr * Display the UI element 150470c28fSAndreas Gohr * 160470c28fSAndreas Gohr * @return void 170470c28fSAndreas Gohr */ 180470c28fSAndreas Gohr abstract public function show(); 190470c28fSAndreas Gohr 200470c28fSAndreas Gohr} 21