blob: cfbdbc7dd6636367c82ca6730d15147a017ad8d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
/**
* See docs/skin.txt
*
* @todo document
* @file
* @ingroup Skins
*/
if( !defined( 'MEDIAWIKI' ) )
die( -1 );
/** */
require_once( dirname(__FILE__) . '/MonoBook.php' );
/**
* @todo document
* @ingroup Skins
*/
class SkinChick extends SkinTemplate {
function initPage( &$out ) {
SkinTemplate::initPage( $out );
$this->skinname = 'chick';
$this->stylename = 'chick';
$this->template = 'MonoBookTemplate';
$this->fixfiles = array( 'IE50', 'IE55', 'IE60' );
}
}
|