Commit the transaction after an upload is recorded and logged, to avoid losing images...
[mediawiki.git] / skins / Nostalgia.php
blob1b54aab9653d82c3c11332d01e8d5cfef5a29ce6
1 <?php
2 /**
3 * See skin.txt
5 * @todo document
6 * @package MediaWiki
7 * @subpackage Skins
8 */
10 if( !defined( 'MEDIAWIKI' ) )
11 die( -1 );
13 /**
14 * @todo document
15 * @package MediaWiki
16 * @subpackage Skins
18 class SkinNostalgia extends Skin {
20 function getStylesheet() {
21 return 'common/nostalgia.css?1';
23 function getSkinName() {
24 return "nostalgia";
27 function doBeforeContent() {
29 $s = "\n<div id='content'>\n<div id='topbar'>";
30 $s .= $this->logoText( "right" );
32 $s .= $this->pageTitle();
33 $s .= $this->pageSubtitle() . "\n";
35 $s .= $this->topLinks() . "\n<br />";
37 $notice = wfGetSiteNotice();
38 if( $notice ) {
39 $s .= "\n<div id='siteNotice'>$notice</div>\n";
41 $s .= $this->pageTitleLinks();
43 $ol = $this->otherLanguages();
44 if($ol) $s .= "<br />" . $ol;
46 $cat = $this->getCategoryLinks();
47 if($cat) $s .= "<br />" . $cat;
49 $s .= "<br clear='all' /><hr />\n</div>\n";
50 $s .= "\n<div id='article'>";
52 return $s;
55 function topLinks() {
56 global $wgOut, $wgUser;
57 $sep = " |\n";
59 $s = $this->mainPageLink() . $sep
60 . $this->specialLink( "recentchanges" );
62 if ( $wgOut->isArticle() ) {
63 $s .= $sep . $this->editThisPage()
64 . $sep . $this->historyLink();
66 if ( $wgUser->isAnon() ) {
67 $s .= $sep . $this->specialLink( "userlogin" );
68 } else {
69 $s .= $sep . $this->specialLink( "userlogout" );
71 $s .= $sep . $this->specialPagesList();
73 return $s;
76 function doAfterContent() {
77 $s = "\n</div><br clear='all' />\n";
79 $s .= "\n<div id='footer'><hr />";
81 $s .= $this->bottomLinks();
82 $s .= "\n<br />" . $this->pageStats();
83 $s .= "\n<br />" . $this->mainPageLink()
84 . " | " . $this->aboutLink()
85 . " | " . $this->searchForm();
87 $s .= "\n</div>\n</div>\n";
89 return $s;