MediaWiki
REL1_20
|
00001 <?php 00025 if( !defined( 'MEDIAWIKI' ) ) 00026 die( -1 ); 00027 00032 class SkinChick extends SkinTemplate { 00033 var $skinname = 'chick', $stylename = 'chick', 00034 $template = 'MonoBookTemplate', $useHeadElement = true; 00035 00039 function setupSkinUserCss( OutputPage $out ){ 00040 parent::setupSkinUserCss( $out ); 00041 00042 $out->addModuleStyles( 'skins.chick' ); 00043 00044 // TODO: Migrate all of these to RL 00045 $out->addStyle( 'chick/IE60Fixes.css', 'screen,handheld', 'IE 6' ); 00046 } 00047 }