\n
";
$s .= $this->logoText( "right" );
$s .= $this->pageTitle();
$s .= $this->pageSubtitle() . "\n";
$s .= $this->topLinks() . "\n
";
$notice = wfGetSiteNotice();
if( $notice ) {
$s .= "\n
$notice
\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();
}
/* 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
\n";
$s .= "\n\n\n";
return $s;
}
}
?>