Added hook SkinTemplateNavigation which provides a way to tweak the navigation before...
[lhc/web/wiklou.git] / skins / MySkin.php
1 <?php
2 /**
3 * MySkin: Monobook without the CSS. The idea is that you
4 * customise it using user or site CSS
5 *
6 * @file
7 * @ingroup Skins
8 */
9
10 if( !defined( 'MEDIAWIKI' ) )
11 die( -1 );
12
13 /**
14 * Inherit main code from SkinTemplate, set the CSS and template filter.
15 * @ingroup Skins
16 */
17 class SkinMySkin extends SkinTemplate {
18 function initPage( OutputPage $out ) {
19 parent::initPage( $out );
20 $this->skinname = 'myskin';
21 $this->stylename = 'myskin';
22 $this->template = 'MonoBookTemplate';
23 }
24 }