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