Update the Chinese conversion tables
[lhc/web/wiklou.git] / skins / Simple.php
1 <?php
2 /**
3 * See docs/skin.txt
4 *
5 * @todo document
6 * @file
7 * @ingroup Skins
8 */
9
10 if( !defined( 'MEDIAWIKI' ) )
11 die( -1 );
12
13 /** */
14 require_once( dirname(__FILE__) . '/MonoBook.php' );
15
16 /**
17 * @todo document
18 * @ingroup Skins
19 */
20 class SkinSimple extends SkinTemplate {
21 function initPage( &$out ) {
22 SkinTemplate::initPage( $out );
23 $this->skinname = 'simple';
24 $this->stylename = 'simple';
25 $this->template = 'MonoBookTemplate';
26 $this->addStyle( 'simple/main.css', 'screen' );
27 $this->addStyle( 'simple/rtl.css', '', '', 'rtl' );
28
29 }
30
31 function reallyDoGetUserStyles() {
32 global $wgUser;
33 $s = '';
34 if (($undopt = $wgUser->getOption("underline")) != 2) {
35 $underline = $undopt ? 'underline' : 'none';
36 $s .= "a { text-decoration: $underline; }\n";
37 }
38 if ($wgUser->getOption('highlightbroken')) {
39 $s .= "a.new, #quickbar a.new { text-decoration: line-through; }\n";
40 } else {
41 $s .= <<<END
42 a.new, #quickbar a.new,
43 a.stub, #quickbar a.stub {
44 color: inherit;
45 text-decoration: inherit;
46 }
47 a.new:after, #quickbar a.new:after {
48 content: "?";
49 color: #CC2200;
50 text-decoration: $underline;
51 }
52 a.stub:after, #quickbar a.stub:after {
53 content: "!";
54 color: #772233;
55 text-decoration: $underline;
56 }
57 END;
58 }
59 if ($wgUser->getOption('justify')) {
60 $s .= "#article, #bodyContent { text-align: justify; }\n";
61 }
62 if (!$wgUser->getOption('showtoc')) {
63 $s .= "#toc { display: none; }\n";
64 }
65 if (!$wgUser->getOption('editsection')) {
66 $s .= ".editsection { display: none; }\n";
67 }
68 return $s;
69 }
70 }
71
72