\n
" .
'
';
$s .= '';
$s .= '';
$s .= '' . wfMsg( 'sitetitle' ) . '';
$s .= ' | ';
$s .= $this->sysLinks();
$s .= ' |
';
$s .= '';
$s .= htmlspecialchars( wfMsg( 'sitesubtitle' ) ) . '';
$s .= ' | ';
$s .= '';
$s .= str_replace( ' ', '', $this->otherLanguages() );
$cat = $this->getCategoryLinks();
if( $cat ) {
$s .= " $cat\n";
}
$s .= ' ' . $this->pageTitleLinks();
$s .= '';
$s .= " |
\n";
$s .= "\n
\n
";
$notice = wfGetSiteNotice();
if( $notice ) {
$s .= "\n
$notice
\n";
}
$s .= $this->pageTitle();
$s .= $this->pageSubtitle() . "\n";
return $s;
}
function doAfterContent(){
global $wgLang;
$s = "\n
\n";
$s .= "\n\n
\n";
if ( 0 != $qb ) {
$s .= $this->quickBar();
}
return $s;
}
function reallyGenerateUserStylesheet() {
$s = parent::reallyGenerateUserStylesheet();
$qb = $this->qbSetting();
if ( 2 == $qb ) { # Right
$s .= "#quickbar { position: absolute; right: 4px; }\n" .
"#article { margin-left: 4px; margin-right: 148px; }\n";
} elseif ( 1 == $qb ) {
$s .= "#quickbar { position: absolute; left: 4px; }\n" .
"#article { margin-left: 148px; margin-right: 4px; }\n";
} elseif ( 3 == $qb ) { # Floating left
$s .= "#quickbar { position:absolute; left:4px } \n" .
"#topbar { margin-left: 148px }\n" .
"#article { margin-left:148px; margin-right: 4px; } \n" .
"body>#quickbar { position:fixed; left:4px; top:4px; overflow:auto ;bottom:4px;} \n"; # Hides from IE
} elseif ( 4 == $qb ) { # Floating right
$s .= "#quickbar { position: fixed; right: 4px; } \n" .
"#topbar { margin-right: 148px }\n" .
"#article { margin-right: 148px; margin-left: 4px; } \n" .
"body>#quickbar { position: fixed; right: 4px; top: 4px; overflow: auto ;bottom:4px;} \n"; # Hides from IE
}
return $s;
}
function sysLinks() {
global $wgUser, $wgLang, $wgContLang;
$li = SpecialPage::getTitleFor( 'Userlogin' );
$lo = SpecialPage::getTitleFor( 'Userlogout' );
$rt = $this->mTitle->getPrefixedURL();
if ( 0 == strcasecmp( urlencode( $lo ), $rt ) ) {
$q = array();
} else {
$q = array( 'returnto' => $rt );
}
$s = array(
$this->mainPageLink(),
$this->linkKnown(
Title::newFromText( wfMsgForContent( 'aboutpage' ) ),
wfMsg( 'about' )
),
$this->linkKnown(
Title::newFromText( wfMsgForContent( 'helppage' ) ),
wfMsg( 'help' )
),
$this->linkKnown(
Title::newFromText( wfMsgForContent( 'faqpage' ) ),
wfMsg( 'faq' )
),
$this->specialLink( 'specialpages' )
);
/* show links to different language variants */
if( $this->variantLinks() ) {
$s[] = $this->variantLinks();
}
if( $this->extensionTabLinks() ) {
$s[] = $this->extensionTabLinks();
}
if ( $wgUser->isLoggedIn() ) {
$s[] = $this->linkKnown(
$lo,
wfMsg( 'logout' ),
array(),
$q
);
} else {
$s[] = $this->linkKnown(
$li,
wfMsg( 'login' ),
array(),
$q
);
}
return $wgLang->pipeList( $s );
}
/**
* Compute the sidebar
* @access private
*/
function quickBar(){
global $wgOut, $wgUser, $wgEnableUploads;
$tns = $this->mTitle->getNamespace();
$s = "\n";
$sep = '
';
$s .= $this->menuHead( 'qbfind' );
$s .= $this->searchForm();
$s .= $this->menuHead( 'qbbrowse' );
# Use the first heading from the Monobook sidebar as the "browse" section
$bar = $this->buildSidebar();
unset( $bar['SEARCH'] );
unset( $bar['LANGUAGES'] );
unset( $bar['TOOLBOX'] );
$browseLinks = reset( $bar );
foreach ( $browseLinks as $link ) {
if ( $link['text'] != '-' ) {
$s .= "
" .
htmlspecialchars( $link['text'] ) . '' . $sep;
}
}
if ( $wgOut->isArticle() ) {
$s .= $this->menuHead( 'qbedit' );
$s .= '
' . $this->editThisPage() . '';
$s .= $sep . $this->linkKnown(
Title::newFromText( wfMsgForContent( 'edithelppage' ) ),
wfMsg( 'edithelp' )
);
if( $wgUser->isLoggedIn() ) {
$s .= $sep . $this->moveThisPage();
}
if ( $wgUser->isAllowed( 'delete' ) ) {
$dtp = $this->deleteThisPage();
if ( $dtp != '' ) {
$s .= $sep . $dtp;
}
}
if ( $wgUser->isAllowed( 'protect' ) ) {
$ptp = $this->protectThisPage();
if ( $ptp != '' ) {
$s .= $sep . $ptp;
}
}
$s .= $sep;
$s .= $this->menuHead( 'qbpageoptions' );
$s .= $this->talkLink()
. $sep . $this->commentLink()
. $sep . $this->printableLink();
if ( $wgUser->isLoggedIn() ) {
$s .= $sep . $this->watchThisPage();
}
$s .= $sep;
$s .= $this->menuHead( 'qbpageinfo' )
. $this->historyLink()
. $sep . $this->whatLinksHere()
. $sep . $this->watchPageLinksLink();
if( $tns == NS_USER || $tns == NS_USER_TALK ) {
$id = User::idFromName( $this->mTitle->getText() );
if( $id != 0 ) {
$s .= $sep . $this->userContribsLink();
if( $this->showEmailUser( $id ) ) {
$s .= $sep . $this->emailUserLink();
}
}
}
$s .= $sep;
}
$s .= $this->menuHead( 'qbmyoptions' );
if ( $wgUser->isLoggedIn() ) {
$name = $wgUser->getName();
$tl = $this->link(
$wgUser->getTalkPage(),
wfMsg( 'mytalk' ),
array(),
array(),
array( 'known', 'noclasses' )
);
if ( $wgUser->getNewtalk() ) {
$tl .= ' *';
}
$s .= $this->link(
$wgUser->getUserPage(),
wfMsg( 'mypage' ),
array(),
array(),
array( 'known', 'noclasses' )
) . $sep . $tl . $sep . $this->specialLink( 'watchlist' )
. $sep .
$this->link(
SpecialPage::getSafeTitleFor( 'Contributions', $wgUser->getName() ),
wfMsg( 'mycontris' ),
array(),
array(),
array( 'known', 'noclasses' )
) . $sep . $this->specialLink( 'preferences' )
. $sep . $this->specialLink( 'userlogout' );
} else {
$s .= $this->specialLink( 'userlogin' );
}
$s .= $this->menuHead( 'qbspecialpages' )
. $this->specialLink( 'newpages' )
. $sep . $this->specialLink( 'listfiles' )
. $sep . $this->specialLink( 'statistics' );
if ( $wgUser->isLoggedIn() && $wgEnableUploads ) {
$s .= $sep . $this->specialLink( 'upload' );
}
global $wgSiteSupportPage;
if( $wgSiteSupportPage ) {
$s .= $sep . '
'
. wfMsg( 'sitesupport' ) . '';
}
$s .= $sep . $this->link(
SpecialPage::getTitleFor( 'Specialpages' ),
wfMsg( 'moredotdotdot' ),
array(),
array(),
array( 'known', 'noclasses' )
);
$s .= $sep . "\n
\n";
return $s;
}
function menuHead( $key ) {
$s = "\n