ed1e1d76a1a4a7d27d3c935021667d82d4f0fde2
[lhc/web/wiklou.git] / skins / Amethyst.php
1 <?php
2 /**
3 * Amethyst
4 *
5 * Reuse the MonoBook template (originally a plone style
6 * ported on MediaWiki by Gabriel Wicke).
7 *
8 * @todo document
9 * @subpackage Skins
10 */
11
12 if( !defined( 'MEDIAWIKI' ) )
13 die();
14
15 /** Skin reuse monobook template */
16 require_once('MonoBook.php');
17
18 /**
19 * Inherit main code from SkinTemplate, set the CSS and template filter.
20 * @todo document
21 * @subpackage Skins
22 */
23 class SkinAmethyst extends SkinTemplate {
24 /** Using monobook. */
25 function initPage( &$out ) {
26 SkinTemplate::initPage( $out );
27 $this->skinname = 'amethyst';
28 $this->stylename = 'amethyst';
29 $this->template = 'MonobookTemplate';
30 }
31 }
32
33 ?>