MediaWiki  REL1_19
Chick.php
Go to the documentation of this file.
00001 <?php
00010 if( !defined( 'MEDIAWIKI' ) )
00011         die( -1 );
00012 
00014 require_once( dirname(__FILE__) . '/MonoBook.php' );
00015 
00020 class SkinChick extends SkinTemplate {
00021         var $skinname = 'chick', $stylename = 'chick',
00022         $template = 'MonoBookTemplate', $useHeadElement = true;
00023 
00027         function setupSkinUserCss( OutputPage $out ){
00028                 parent::setupSkinUserCss( $out );
00029 
00030                 $out->addModuleStyles( 'skins.chick' );
00031 
00032                 // TODO: Migrate all of these to RL
00033                 $out->addStyle( 'chick/IE60Fixes.css', 'screen,handheld', 'IE 6' );
00034         }
00035 }