]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blob - skins/Skin.sample
MediaWiki 1.5.8 (initial commit)
[autoinstallsdev/mediawiki.git] / skins / Skin.sample
1 <?php
2 # Your class extension is defined there.
3 #
4 # Do NOT use PHPTal with this sample, if you want PHPTal support have a look at
5 # the other sample : SkinPHPTal.sample.
6 #
7 # The class name MUST begin with 'Skin' and the rest is the name of the file
8 # excluding '.php'
9 # This file is named Skin.sample (but it should end with php). So the
10 # class name will be 'Skin' . 'Skin'
11
12 class SkinSkin extends Skin {
13 # Override method below
14 #
15
16 }
17
18 }
19 ?>