(bug 18522) Wrap MediaWiki:Protect-cascadeon in a div for identification (patch by...
[mediawiki.git] / skins / MySkin.php
blobfac2b724cea1724ad76f92afc7b1e7e8f029b389
1 <?php
2 /**
3 * MySkin: Monobook without the CSS. The idea is that you
4 * customise it using user or site CSS
6 * @file
7 * @ingroup Skins
8 */
10 if( !defined( 'MEDIAWIKI' ) )
11 die( -1 );
13 /**
14 * Inherit main code from SkinTemplate, set the CSS and template filter.
15 * @ingroup Skins
17 class SkinMySkin extends SkinTemplate {
18 function initPage( OutputPage $out ) {
19 parent::initPage( $out );
20 $this->skinname = 'myskin';
21 $this->stylename = 'myskin';
22 $this->template = 'MonoBookTemplate';