\n
"; $s .= $this->logoText( "right" ); $s .= $this->pageTitle(); $s .= $this->pageSubtitle() . "\n"; $s .= $this->topLinks() . "\n
"; if( $wgSiteNotice ) { $s .= "\n
$wgSiteNotice
\n"; } $s .= $this->pageTitleLinks(); $ol = $this->otherLanguages(); if($ol) $s .= "
" . $ol; $cat = $this->getCategoryLinks(); if($cat) $s .= "
" . $cat; $s .= "

\n
\n"; $s .= "\n
"; 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(); } if ( 0 == $wgUser->getID() ) { $s .= $sep . $this->specialLink( "userlogin" ); } else { $s .= $sep . $this->specialLink( "userlogout" ); } $s .= $sep . $this->specialPagesList(); return $s; } function doAfterContent() { global $wgUser, $wgOut; $s = "\n

\n"; $s .= "\n\n\n"; return $s; } } ?>