Allow external URLs (e.g. http://bits.wikimedia.org/foo) in OutputPage::addScript()
[mediawiki.git] / skins / Chick.php
blobb5c9bda8a9a14dacbb78b7e02e2dbdb30bab28ad
1 <?php
2 /**
3 * Chick: A lightweight Monobook skin with no sidebar, the sidebar links are
4 * given at the bottom of the page instead, as in the unstyled MySkin.
6 * @file
7 * @ingroup Skins
8 */
10 if( !defined( 'MEDIAWIKI' ) )
11 die( -1 );
13 /** */
14 require_once( dirname(__FILE__) . '/MonoBook.php' );
16 /**
17 * Inherit main code from SkinTemplate, set the CSS and template filter.
18 * @ingroup Skins
20 class SkinChick extends SkinTemplate {
21 var $skinname = 'chick', $stylename = 'chick',
22 $template = 'MonoBookTemplate', $useHeadElement = true;
24 function setupSkinUserCss( OutputPage $out ){
25 parent::setupSkinUserCss( $out );
26 // Append to the default screen common & print styles...
27 $out->addStyle( 'chick/main.css', 'screen,handheld' );
28 $out->addStyle( 'chick/IE60Fixes.css', 'screen,handheld', 'IE 6' );