* Some clown with CVS access deleted our MS Word files and replaced them with
[lhc/web/wiklou.git] / skins / disabled / Amethyst.php
1 <?php
2 /**
3 * Amethyst skin
4 * Original design by Sorkhiri and Sorwena members of the EverQuest
5 * <Amethyst> guild
6 * Ported to MediaWiki by Ashar Voultoiz
7 *
8 * See skin.txt for documentation
9 *
10 * @todo document
11 * @package MediaWiki
12 * @subpackage Skins
13 */
14
15 if( !defined( 'MEDIAWIKI' ) )
16 die();
17
18 /** */
19 require_once('includes/SkinPHPTal.php');
20 if( class_exists( 'SkinPHPTal' ) ) {
21
22 /**
23 * See skin.txt
24 *
25 * @todo document
26 * @package MediaWiki
27 * @subpackage Skins
28 */
29 class SkinAmethyst extends SkinPHPTal {
30 function initPage( &$out ) {
31 SkinPHPTal::initPage( $out );
32 $this->skinname = 'amethyst';
33 $this->stylename = 'amethyst';
34 $this->template = 'Amethyst';
35 }
36 }
37
38 }
39 ?>