blob: 3b19e41e6406bb190762d2e651c146cafb2a077c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
<?php
/**
* See skin.txt
*
* @todo document
* @package MediaWiki
* @subpackage Skins
*/
if( !defined( 'MEDIAWIKI' ) )
die( -1 );
/**
* @todo document
* @package MediaWiki
* @subpackage Skins
*/
class SkinNostalgia extends Skin {
function getStylesheet() {
return 'common/nostalgia.css';
}
function getSkinName() {
return "nostalgia";
}
function doBeforeContent() {
$s = "\n<div id='content'>\n<div id='topbar'>";
$s .= $this->logoText( "right" );
$s .= $this->pageTitle();
$s .= $this->pageSubtitle() . "\n";
$s .= $this->topLinks() . "\n<br />";
$notice = wfGetSiteNotice();
if( $notice ) {
$s .= "\n<div id='siteNotice'>$notice</div>\n";
}
$s .= $this->pageTitleLinks();
$ol = $this->otherLanguages();
if($ol) $s .= "<br />" . $ol;
$cat = $this->getCategoryLinks();
if($cat) $s .= "<br />" . $cat;
$s .= "<br clear='all' /><hr />\n</div>\n";
$s .= "\n<div id='article'>";
return $s;
}
function topLinks() {
global $wgOut, $wgUser;
$sep = " |\n";
$s = $this->mainPageLink() . $sep
. $this->specialLink( "recentchanges" );
if ( $wgOut->isArticle() ) {
$s .= $sep . $this->editThisPage()
. $sep . $this->historyLink();
}
/* show links to different language variants */
$s .= $this->variantLinks();
$s .= $this->extensionTabLinks();
if ( $wgUser->isAnon() ) {
$s .= $sep . $this->specialLink( "userlogin" );
} else {
$s .= $sep . $this->specialLink( "userlogout" );
}
$s .= $sep . $this->specialPagesList();
return $s;
}
function doAfterContent() {
$s = "\n</div><br clear='all' />\n";
$s .= "\n<div id='footer'><hr />";
$s .= $this->bottomLinks();
$s .= "\n<br />" . $this->pageStats();
$s .= "\n<br />" . $this->mainPageLink()
. " | " . $this->aboutLink()
. " | " . $this->searchForm();
$s .= "\n</div>\n</div>\n";
return $s;
}
}
?>
|