Use the new skin tree hierarchy
[lhc/web/wiklou.git] / skins / MonoBook.php
1 <?php
2 /**
3 * See skin.doc
4 *
5 * @todo document
6 * @package MediaWiki
7 * @subpackage Skins
8 */
9
10 /** */
11 if ($wgUsePHPTal) {
12 require_once('includes/SkinPHPTal.php');
13
14 /**
15 * Inherit everything from SkinPHPTal
16 * This is a dummy skin as MonoBook is the default PHPTal skin.
17 * @todo document
18 * @package MediaWiki
19 * @subpackage Skins
20 */
21 class SkinMonoBook extends SkinPHPTal {
22 /** Using monobook. */
23 function initPage( &$out ) {
24 SkinPHPTal::initPage( $out );
25 $this->skinname = 'monobook';
26 $this->stylename = 'monobook';
27 $this->template = 'MonoBook';
28 }
29 }
30
31 }
32 ?>