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