cleanup to CologneBlue.php, Nostalgia.php and Standard.php
[lhc/web/wiklou.git] / skins / Chick.php
index 729d59e..b5c9bda 100644 (file)
@@ -1,16 +1,30 @@
 <?php
-if ($wgUsePHPTal) {
-require_once('includes/SkinPHPTal.php');
+/**
+ * Chick: A lightweight Monobook skin with no sidebar, the sidebar links are
+ * given at the bottom of the page instead, as in the unstyled MySkin.
+ *
+ * @file
+ * @ingroup Skins
+ */
 
-class SkinChick extends SkinPHPTal {
-       function initPage( &$out ) {
-               SkinPHPTal::initPage( $out );
-               $this->skinname = 'chick';
-               $this->template = 'Chick';
-       }
-       function suppressUrlExpansion() { return true; }
-       function printSource() { return ''; }
-}
+if( !defined( 'MEDIAWIKI' ) )
+       die( -1 );
+
+/** */
+require_once( dirname(__FILE__) . '/MonoBook.php' );
 
+/**
+ * Inherit main code from SkinTemplate, set the CSS and template filter.
+ * @ingroup Skins
+ */
+class SkinChick extends SkinTemplate {
+       var $skinname = 'chick', $stylename = 'chick',
+       $template = 'MonoBookTemplate', $useHeadElement = true;
+
+       function setupSkinUserCss( OutputPage $out ){
+               parent::setupSkinUserCss( $out );
+               // Append to the default screen common & print styles...
+               $out->addStyle( 'chick/main.css', 'screen,handheld' );
+               $out->addStyle( 'chick/IE60Fixes.css', 'screen,handheld', 'IE 6' );
+       }
 }
-?>