blob: 8859a71ad677b79f067a022a51603aa1de23c645 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
/**
* MySkin: Monobook without the CSS. The idea is that you
* customise it using user or site CSS
*
* @file
* @ingroup Skins
*/
if( !defined( 'MEDIAWIKI' ) )
die( -1 );
/**
* Inherit main code from SkinTemplate, set the CSS and template filter.
* @ingroup Skins
*/
class SkinMySkin extends SkinTemplate {
var $skinname = 'myskin', $stylename = 'myskin',
$template = 'MonoBookTemplate', $useHeadElement = true;
}
|