wiki.techinc.nl/skins/MonoBook.php
2004-09-05 03:25:58 +00:00

32 lines
571 B
PHP

<?php
/**
* See skin.doc
*
* @todo document
* @package MediaWiki
* @subpackage Skins
*/
/** */
if ($wgUsePHPTal) {
require_once('includes/SkinPHPTal.php');
/**
* Inherit everything from SkinPHPTal
* This is a dummy skin as MonoBook is the default PHPTal skin.
* @todo document
* @package MediaWiki
* @subpackage Skins
*/
class SkinMonoBook extends SkinPHPTal {
/** Using monobook. */
function initPage( &$out ) {
SkinPHPTal::initPage( $out );
$this->skinname = 'monobook';
$this->stylename = 'monobook';
$this->template = 'MonoBook';
}
}
}
?>