about summary refs log blame commit diff stats
path: root/wiki/inc/Ui/Ui.php
blob: 8aac0de425902b7441e23276361f44d20ecf3d54 (plain) (tree)



















                                               
<?php
namespace dokuwiki\Ui;

/**
 * Class Ui
 *
 * Abstract base class for all DokuWiki screens
 *
 * @package dokuwiki\Ui
 */
abstract class Ui {

    /**
     * Display the UI element
     *
     * @return void
     */
    abstract public function show();

}