Go to the source code of this file.
Classes | |
class | Skin |
The main skin class that provide methods and properties for all other skins. More... | |
Functions | |
setupUserCss (OutputPage $out) | |
setupSkinUserCss (OutputPage $out) | |
Add skin specific stylesheets. | |
getPageClasses ($title) | |
getLogo () | |
URL to the logo. | |
beforeContent () | |
This will be called immediately after the <body> tag. | |
doBeforeContent () | |
getCategoryLinks () | |
drawCategoryBrowser ($tree, &$skin) | |
Render the array as a serie of links. | |
getCategories () | |
getQuickbarCompensator ($rows=1) | |
afterContentHook () | |
This runs a hook to allow extensions placing their stuff after content and article metadata (e.g. | |
generateDebugHTML () | |
Generate debug data HTML for displaying at the bottom of the main content area. | |
formatDebugHTML ($debugText) | |
afterContent () | |
This gets called shortly before the </body> tag. | |
bottomScripts () | |
This gets called shortly before the </body> tag. | |
printSource () | |
printFooter () | |
doAfterContent () | |
overloaded by derived classes | |
pageTitleLinks () | |
getUndeleteLink () | |
printableLink () | |
pageTitle () | |
Gets the h1 element with the page title. | |
pageSubtitle () | |
subPageSubtitle () | |
showIPinHeader () | |
Returns true if the IP should be shown in the header. | |
nameAndLogin () | |
getSearchLink () | |
escapeSearchLink () | |
searchForm () | |
topLinks () | |
extensionTabLinks () | |
Compatibility for extensions adding functionality through tabs. | |
variantLinks () | |
Language/charset variant links for classic-style skins. | |
bottomLinks () | |
pageStats () | |
getCopyright ($type= 'detect') | |
getCopyrightIcon () | |
getPoweredBy () | |
Gets the powered by MediaWiki icon. | |
lastModified () | |
logoText ($align= '') | |
specialPagesList () | |
Show a drop-down box of special pages. | |
mainPageLink () | |
Gets the link to the wiki's main page. | |
footerLink ($desc, $page) | |
privacyLink () | |
Gets the link to the wiki's privacy policy page. | |
aboutLink () | |
Gets the link to the wiki's about page. | |
disclaimerLink () | |
Gets the link to the wiki's general disclaimers page. | |
editThisPage () | |
editUrlOptions () | |
Return URL options for the 'edit page' link. | |
deleteThisPage () | |
protectThisPage () | |
watchThisPage () | |
moveThisPage () | |
historyLink () | |
whatLinksHere () | |
userContribsLink () | |
showEmailUser ($id) | |
emailUserLink () | |
watchPageLinksLink () | |
trackbackLink () | |
otherLanguages () | |
talkLink () | |
commentLink () | |
static | makeMainPageUrl ($urlaction= '') |
static | makeSpecialUrl ($name, $urlaction= '') |
static | makeSpecialUrlSubpage ($name, $subpage, $urlaction= '') |
static | makeI18nUrl ($name, $urlaction= '') |
static | makeUrl ($name, $urlaction= '') |
static | makeInternalOrExternalUrl ($name) |
If url string starts with http, consider as external URL, else internal. | |
static | makeNSUrl ($name, $urlaction= '', $namespace=NS_MAIN) |
static | makeUrlDetails ($name, $urlaction= '') |
static | makeKnownUrlDetails ($name, $urlaction= '') |
Make URL details where the article exists (or at least it's convenient to think so). | |
static | checkTitle (&$title, $name) |
buildSidebar () | |
Build an array that represents the sidebar(s), the navigation bar among them. | |
addToSidebar (&$bar, $message) | |
Add content from a sidebar system message Currently only used for MediaWiki:Sidebar (but may be used by Extensions). | |
commonPrintStylesheet () | |
Should we include common/wikiprintable.css? Skins that have their own print stylesheet should override this and return false. | |
Variables | |
CSS | |
if($wgUser->getOption( 'justify')) if(!$wgUser-> getOption( 'showtoc')) if(!$wgUser-> getOption( 'editsection')) | $fontstyle = $wgUser->getOption( 'editfont' ) |
if($fontstyle!== 'default') return | $s |
aboutLink | ( | ) |
Gets the link to the wiki's about page.
Definition at line 1654 of file Skin.php.
References footerLink().
Referenced by SkinStandard::doAfterContent(), SkinNostalgia::doAfterContent(), SkinCologneBlue::doAfterContent(), and SkinTemplate::outputPage().
addToSidebar | ( | &$ | bar, | |
$ | message | |||
) |
Add content from a sidebar system message Currently only used for MediaWiki:Sidebar (but may be used by Extensions).
&$bar | array | |
$message | String |
Definition at line 2101 of file Skin.php.
References $title, Title::newFromText(), wfEmptyMsg(), wfMsgExt(), wfMsgForContent(), and wfUrlProtocols().
Referenced by buildSidebar().
afterContent | ( | ) |
This gets called shortly before the </body> tag.
Definition at line 967 of file Skin.php.
References doAfterContent(), generateDebugHTML(), and printFooter().
Referenced by Skin::outputPage().
afterContentHook | ( | ) | [protected] |
This runs a hook to allow extensions placing their stuff after content and article metadata (e.g.
categories). Note: This function has nothing to do with afterContent().
This hook is placed here in order to allow using the same hook for all skins, both the SkinTemplate based ones and the older ones, which directly use this class to get their data.
The output of this function gets processed in SkinTemplate::outputPage() for the SkinTemplate based skins, all other skins should directly echo it.
Returns an empty string by default, if not changed by any hook function.
Definition at line 890 of file Skin.php.
References wfDebug(), and wfRunHooks().
Referenced by SkinTemplate::outputPage(), and Skin::outputPage().
beforeContent | ( | ) |
This will be called immediately after the <body> tag.
Split into two functions to make it easier to subclass.
Definition at line 699 of file Skin.php.
References doBeforeContent().
Referenced by Skin::outputPage().
bottomLinks | ( | ) |
Definition at line 1364 of file Skin.php.
References $s, $wgOut, $wgUseTrackbacks, deleteThisPage(), editThisPage(), emailUserLink(), historyLink(), User::idFromName(), User::isIP(), moveThisPage(), otherLanguages(), protectThisPage(), showEmailUser(), talkLink(), trackbackLink(), userContribsLink(), watchPageLinksLink(), watchThisPage(), wfMsgExt(), and whatLinksHere().
Referenced by SkinStandard::doAfterContent(), SkinNostalgia::doAfterContent(), and SkinCologneBlue::doAfterContent().
bottomScripts | ( | ) |
This gets called shortly before the </body> tag.
Definition at line 976 of file Skin.php.
References Html::inlineScript(), and wfRunHooks().
Referenced by SkinTemplate::outputPage(), and Skin::outputPage().
buildSidebar | ( | ) |
Build an array that represents the sidebar(s), the navigation bar among them.
Definition at line 2069 of file Skin.php.
References $parserMemc, $wgEnableSidebarCache, $wgLang, $wgSidebarCacheExpiry, addToSidebar(), wfMemcKey(), wfProfileIn(), wfProfileOut(), and wfRunHooks().
Referenced by SkinTemplate::outputPage(), SkinStandard::quickBar(), and SkinCologneBlue::quickBar().
static checkTitle | ( | &$ | title, | |
$ | name | |||
) | [static] |
Definition at line 2055 of file Skin.php.
References $name, $title, and Title::newFromText().
Referenced by SkinTemplate::makeArticleUrlDetails(), makeI18nUrl(), makeKnownUrlDetails(), makeMainPageUrl(), makeNSUrl(), SkinTemplate::makeTalkUrlDetails(), makeUrl(), and makeUrlDetails().
commentLink | ( | ) |
commonPrintStylesheet | ( | ) |
Should we include common/wikiprintable.css? Skins that have their own print stylesheet should override this and return false.
(This is an ugly hack to get Monobook to play nicely with OutputPage::headElement().)
deleteThisPage | ( | ) |
Definition at line 1709 of file Skin.php.
References $s, $t, $wgRequest, and wfMsg().
Referenced by bottomLinks(), SkinStandard::quickBar(), and SkinCologneBlue::quickBar().
disclaimerLink | ( | ) |
Gets the link to the wiki's general disclaimers page.
Definition at line 1661 of file Skin.php.
References footerLink().
Referenced by SkinTemplate::outputPage(), and pageTitleLinks().
doAfterContent | ( | ) |
overloaded by derived classes
Definition at line 994 of file Skin.php.
Referenced by afterContent().
doBeforeContent | ( | ) |
Definition at line 703 of file Skin.php.
References $rows, $s, $wgContLang, getCategories(), getQuickbarCompensator(), logoText(), nameAndLogin(), otherLanguages(), pageSubtitle(), pageTitle(), pageTitleLinks(), searchForm(), topLinks(), wfGetSiteNotice(), wfProfileIn(), and wfProfileOut().
Referenced by beforeContent().
drawCategoryBrowser | ( | $ | tree, | |
&$ | skin | |||
) |
Render the array as a serie of links.
$tree | Array: categories tree returned by Title::getParentCategoryTree | |
&skin | Object: skin passed by reference |
Definition at line 837 of file Skin.php.
References Title::newFromText().
Referenced by getCategoryLinks().
editThisPage | ( | ) |
Definition at line 1665 of file Skin.php.
References $s, $t, $wgOut, editUrlOptions(), and wfMsg().
Referenced by bottomLinks(), SkinStandard::quickBar(), SkinCologneBlue::quickBar(), SkinNostalgia::topLinks(), and topLinks().
editUrlOptions | ( | ) |
Return URL options for the 'edit page' link.
This may include an 'oldid' specifier, if the current page view is such.
Definition at line 1697 of file Skin.php.
References $options, and $wgArticle.
Referenced by SkinTemplate::buildContentActionUrls(), SkinVector::buildNavigationUrls(), and editThisPage().
emailUserLink | ( | ) |
Definition at line 1834 of file Skin.php.
References SpecialPage::getTitleFor(), and wfMsg().
Referenced by bottomLinks(), SkinStandard::quickBar(), and SkinCologneBlue::quickBar().
escapeSearchLink | ( | ) |
Definition at line 1258 of file Skin.php.
References getSearchLink().
Referenced by SkinTemplate::outputPage(), SkinCologneBlue::searchForm(), and searchForm().
extensionTabLinks | ( | ) |
Compatibility for extensions adding functionality through tabs.
Eventually these old skins should be replaced with SkinTemplate-based versions, sigh...
Definition at line 1319 of file Skin.php.
References $out, $s, $wgLang, Xml::element(), wfMsgExt(), and wfRunHooks().
Referenced by SkinCologneBlue::sysLinks(), SkinNostalgia::topLinks(), and topLinks().
footerLink | ( | $ | desc, | |
$ | page | |||
) | [private] |
Definition at line 1627 of file Skin.php.
References $page, $title, Title::newFromText(), wfMsgExt(), and wfMsgForContent().
Referenced by aboutLink(), disclaimerLink(), and privacyLink().
formatDebugHTML | ( | $ | debugText | ) | [private] |
generateDebugHTML | ( | ) | [protected] |
Generate debug data HTML for displaying at the bottom of the main content area.
Definition at line 916 of file Skin.php.
References $wgOut, $wgShowDebug, and formatDebugHTML().
Referenced by afterContent(), and SkinTemplate::outputPage().
getCategories | ( | ) |
Definition at line 854 of file Skin.php.
References $classes, $wgOut, and getCategoryLinks().
Referenced by doBeforeContent(), and SkinTemplate::outputPage().
getCategoryLinks | ( | ) |
Definition at line 767 of file Skin.php.
References $msg, $s, $t, $wgContLang, $wgOut, $wgUseCategoryBrowser, drawCategoryBrowser(), Title::newFromText(), wfMsgExt(), and wfMsgForContent().
Referenced by SkinNostalgia::doBeforeContent(), SkinCologneBlue::doBeforeContent(), and getCategories().
getCopyright | ( | $ | type = 'detect' |
) |
Definition at line 1475 of file Skin.php.
References $msg, $out, $title, $wgArticle, $wgRequest, $wgRightsPage, $wgRightsText, $wgRightsUrl, Title::newFromText(), wfMsgForContent(), and wfRunHooks().
Referenced by SkinTemplate::outputPage(), and pageStats().
getCopyrightIcon | ( | ) |
Definition at line 1515 of file Skin.php.
References $out, $url, $wgCopyrightIcon, $wgRightsIcon, $wgRightsText, and $wgRightsUrl.
Referenced by SkinTemplate::outputPage().
getLogo | ( | ) |
URL to the logo.
Definition at line 690 of file Skin.php.
References $wgLogo.
Referenced by logoText().
getPageClasses | ( | $ | title | ) |
Definition at line 674 of file Skin.php.
References $name, $title, and Sanitizer::escapeClass().
Referenced by SkinTemplate::outputPage().
getPoweredBy | ( | ) |
Gets the powered by MediaWiki icon.
Definition at line 1539 of file Skin.php.
References $url, and $wgStylePath.
Referenced by SkinTemplate::outputPage().
getQuickbarCompensator | ( | $ | rows = 1 |
) |
Definition at line 872 of file Skin.php.
Referenced by SkinStandard::doAfterContent(), SkinCologneBlue::doAfterContent(), and doBeforeContent().
getSearchLink | ( | ) |
Definition at line 1253 of file Skin.php.
References $searchPage, and SpecialPage::getTitleFor().
Referenced by escapeSearchLink().
getUndeleteLink | ( | ) |
Definition at line 1069 of file Skin.php.
References $action, $msg, $n, $wgContLang, $wgLang, $wgRequest, SpecialPage::getTitleFor(), wfMsg(), and wfMsgExt().
Referenced by SkinTemplate::outputPage(), and pageTitleLinks().
historyLink | ( | ) |
Definition at line 1798 of file Skin.php.
References wfMsgHtml().
Referenced by bottomLinks(), SkinStandard::quickBar(), SkinCologneBlue::quickBar(), SkinNostalgia::topLinks(), and topLinks().
lastModified | ( | ) |
Definition at line 1546 of file Skin.php.
References $s, $t, $wgArticle, $wgLang, Revision::getTimestampFromId(), wfGetLB(), and wfMsg().
Referenced by SkinTemplate::outputPage(), and pageStats().
logoText | ( | $ | align = '' |
) |
Definition at line 1566 of file Skin.php.
References $s, $url, getLogo(), Title::newMainPage(), and wfMsg().
Referenced by SkinNostalgia::doBeforeContent(), doBeforeContent(), SkinTemplate::outputPage(), and SkinStandard::quickBar().
mainPageLink | ( | ) |
Gets the link to the wiki's main page.
Definition at line 1616 of file Skin.php.
References $s, Title::newMainPage(), and wfMsg().
Referenced by SkinStandard::doAfterContent(), SkinNostalgia::doAfterContent(), SkinCologneBlue::sysLinks(), SkinNostalgia::topLinks(), and topLinks().
static makeI18nUrl | ( | $ | name, | |
$ | urlaction = '' | |||
) | [static] |
Definition at line 2001 of file Skin.php.
References $name, $title, checkTitle(), Title::newFromText(), and wfMsgForContent().
static makeInternalOrExternalUrl | ( | $ | name | ) | [static] |
If url string starts with http, consider as external URL, else internal.
Definition at line 2017 of file Skin.php.
References $name, makeUrl(), and wfUrlProtocols().
Referenced by EditPage::showStandardInputs().
static makeKnownUrlDetails | ( | $ | name, | |
$ | urlaction = '' | |||
) | [static] |
Make URL details where the article exists (or at least it's convenient to think so).
Definition at line 2045 of file Skin.php.
References $name, $title, checkTitle(), and Title::newFromText().
Referenced by SkinTemplate::outputPage().
static makeMainPageUrl | ( | $ | urlaction = '' |
) | [static] |
Definition at line 1985 of file Skin.php.
References $title, checkTitle(), and Title::newMainPage().
Referenced by SkinTemplate::buildNavUrls().
static makeNSUrl | ( | $ | name, | |
$ | urlaction = '' , |
|||
$ | namespace = NS_MAIN | |||
) | [static] |
Definition at line 2026 of file Skin.php.
References $name, $title, checkTitle(), and Title::makeTitleSafe().
Referenced by setupUserCss().
static makeSpecialUrl | ( | $ | name, | |
$ | urlaction = '' | |||
) | [static] |
Definition at line 1991 of file Skin.php.
References $name, $title, and SpecialPage::getTitleFor().
Referenced by SkinTemplate::buildNavUrls(), and SkinTemplate::buildPersonalUrls().
static makeSpecialUrlSubpage | ( | $ | name, | |
$ | subpage, | |||
$ | urlaction = '' | |||
) | [static] |
Definition at line 1996 of file Skin.php.
References $name, $title, and SpecialPage::getSafeTitleFor().
Referenced by SkinTemplate::buildNavUrls(), and SkinTemplate::buildPersonalUrls().
static makeUrl | ( | $ | name, | |
$ | urlaction = '' | |||
) | [static] |
Definition at line 2007 of file Skin.php.
References $name, $title, checkTitle(), and Title::newFromText().
Referenced by OutputPage::getHeadScripts(), makeInternalOrExternalUrl(), SkinTemplate::outputPage(), setupUserCss(), and SkinTemplate::setupUserJs().
static makeUrlDetails | ( | $ | name, | |
$ | urlaction = '' | |||
) | [static] |
Definition at line 2033 of file Skin.php.
References $name, $title, checkTitle(), and Title::newFromText().
Referenced by SkinTemplate::outputPage().
moveThisPage | ( | ) |
Definition at line 1783 of file Skin.php.
References SpecialPage::getTitleFor(), and wfMsg().
Referenced by bottomLinks(), SkinStandard::quickBar(), and SkinCologneBlue::quickBar().
nameAndLogin | ( | ) |
Definition at line 1195 of file Skin.php.
References $name, $wgContLang, $wgLang, SpecialPage::getTitleFor(), Title::newFromText(), showIPinHeader(), wfGetIP(), wfMsg(), and wfMsgForContent().
Referenced by doBeforeContent().
otherLanguages | ( | ) |
Definition at line 1864 of file Skin.php.
References $s, $url, $wgContLang, $wgHideInterlanguageLinks, $wgOut, Title::newFromText(), wfMsg(), and wfMsgExt().
Referenced by bottomLinks(), SkinNostalgia::doBeforeContent(), SkinCologneBlue::doBeforeContent(), and doBeforeContent().
pageStats | ( | ) |
Definition at line 1421 of file Skin.php.
References $dbr, $res, $s, $wgArticle, $wgDisableCounters, $wgLang, $wgMaxCredits, $wgOut, $wgPageShowWatchingUsers, $wgRequest, $wgShowCreditsIfMax, getCopyright(), Credits::getCredits(), lastModified(), wfGetDB(), and wfMsgExt().
Referenced by SkinStandard::doAfterContent(), SkinNostalgia::doAfterContent(), SkinCologneBlue::doAfterContent(), and printFooter().
pageSubtitle | ( | ) |
Definition at line 1128 of file Skin.php.
References $s, $wgExtraSubtitle, $wgOut, subPageSubtitle(), and wfMsgExt().
Referenced by SkinNostalgia::doBeforeContent(), SkinCologneBlue::doBeforeContent(), and doBeforeContent().
pageTitle | ( | ) |
Gets the h1 element with the page title.
Definition at line 1122 of file Skin.php.
Referenced by SkinNostalgia::doBeforeContent(), SkinCologneBlue::doBeforeContent(), doBeforeContent(), WikiImporter::in_page(), WikiImporter::out_append(), and WikiImporter::out_page().
pageTitleLinks | ( | ) |
Definition at line 998 of file Skin.php.
References $action, $name, $s, $wgLang, $wgOut, $wgRequest, disclaimerLink(), getUndeleteLink(), printableLink(), privacyLink(), wfFindFile(), wfMsg(), and wfMsgHtml().
Referenced by SkinNostalgia::doBeforeContent(), SkinCologneBlue::doBeforeContent(), and doBeforeContent().
printableLink | ( | ) |
Definition at line 1098 of file Skin.php.
References $s, $wgFeedClasses, $wgLang, $wgOut, $wgRequest, wfMsg(), and wfMsgHtml().
Referenced by pageTitleLinks(), and SkinCologneBlue::quickBar().
printFooter | ( | ) |
Definition at line 988 of file Skin.php.
References pageStats(), and printSource().
Referenced by afterContent().
printSource | ( | ) |
Definition at line 983 of file Skin.php.
Referenced by SkinTemplate::outputPage(), and printFooter().
privacyLink | ( | ) |
Gets the link to the wiki's privacy policy page.
Definition at line 1647 of file Skin.php.
References footerLink().
Referenced by SkinTemplate::outputPage(), and pageTitleLinks().
protectThisPage | ( | ) |
Definition at line 1729 of file Skin.php.
References $s, $wgRequest, and wfMsg().
Referenced by bottomLinks(), SkinStandard::quickBar(), and SkinCologneBlue::quickBar().
searchForm | ( | ) |
Definition at line 1262 of file Skin.php.
References $s, $wgRequest, $wgUseTwoButtonsSearchForm, escapeSearchLink(), and wfMsg().
Referenced by SkinStandard::doAfterContent(), SkinNostalgia::doAfterContent(), and doBeforeContent().
setupSkinUserCss | ( | OutputPage $ | out | ) |
Add skin specific stylesheets.
$out | OutputPage |
Definition at line 667 of file Skin.php.
References OutputPage::addStyle().
Referenced by setupUserCss().
setupUserCss | ( | OutputPage $ | out | ) |
Definition at line 596 of file Skin.php.
References $action, $url, $wgAllowUserCss, $wgContLang, $wgHandheldStyle, $wgRequest, $wgSquidMaxage, $wgStylePath, $wgUseSiteCss, OutputPage::addInlineStyle(), OutputPage::addStyle(), OutputPage::getExtStyle(), makeNSUrl(), makeUrl(), setupSkinUserCss(), wfArrayToCGI(), wfProfileIn(), and wfProfileOut().
Referenced by SkinTemplate::outputPage().
showEmailUser | ( | $ | id | ) |
Definition at line 1827 of file Skin.php.
References User::newFromId().
Referenced by bottomLinks(), SkinTemplate::buildNavUrls(), SkinStandard::quickBar(), and SkinCologneBlue::quickBar().
showIPinHeader | ( | ) |
Returns true if the IP should be shown in the header.
Definition at line 1190 of file Skin.php.
References $wgShowIPinHeader.
Referenced by SkinTemplate::buildPersonalUrls(), nameAndLogin(), and SkinTemplate::outputPage().
specialPagesList | ( | ) |
Show a drop-down box of special pages.
Definition at line 1585 of file Skin.php.
References $name, $page, $s, $wgContLang, $wgRedirectScript, $wgServer, SpecialPage::getRegularPages(), SpecialPage::getRestrictedPages(), and wfMsg().
Referenced by SkinNostalgia::topLinks().
subPageSubtitle | ( | ) |
Definition at line 1142 of file Skin.php.
References $wgOut, MWNamespace::hasSubpages(), Title::newFromText(), wfMsgExt(), and wfRunHooks().
Referenced by SkinTemplate::outputPage(), and pageSubtitle().
talkLink | ( | ) |
Definition at line 1903 of file Skin.php.
References $s, wfFindFile(), and wfMsg().
Referenced by bottomLinks(), SkinStandard::quickBar(), and SkinCologneBlue::quickBar().
topLinks | ( | ) |
Definition at line 1286 of file Skin.php.
References $s, $wgOut, editThisPage(), extensionTabLinks(), historyLink(), mainPageLink(), variantLinks(), and wfMsgExt().
Referenced by doBeforeContent().
trackbackLink | ( | ) |
userContribsLink | ( | ) |
Definition at line 1817 of file Skin.php.
References SpecialPage::getTitleFor(), and wfMsgHtml().
Referenced by bottomLinks(), SkinStandard::quickBar(), and SkinCologneBlue::quickBar().
variantLinks | ( | ) |
Language/charset variant links for classic-style skins.
Definition at line 1344 of file Skin.php.
References $code, $s, $wgContLang, $wgDisableLangConversion, and $wgLang.
Referenced by SkinCologneBlue::sysLinks(), SkinNostalgia::topLinks(), and topLinks().
watchPageLinksLink | ( | ) |
Definition at line 1844 of file Skin.php.
References $wgOut, SpecialPage::getTitleFor(), and wfMsg().
Referenced by bottomLinks(), SkinStandard::quickBar(), and SkinCologneBlue::quickBar().
watchThisPage | ( | ) |
Definition at line 1755 of file Skin.php.
References $s, $wgOut, and wfMsg().
Referenced by bottomLinks(), SkinStandard::quickBar(), and SkinCologneBlue::quickBar().
whatLinksHere | ( | ) |
Definition at line 1807 of file Skin.php.
References SpecialPage::getTitleFor(), and wfMsgHtml().
Referenced by bottomLinks(), SkinStandard::quickBar(), and SkinCologneBlue::quickBar().
if ($fontstyle!== 'default') return $s |
Definition at line 587 of file Skin.php.
Referenced by Site::__construct(), ExplodeIterator::__construct(), MimeMagic::__construct(), LikeMatch::__construct(), PPCustomFrame_Hash::__toString(), PPTemplateFrame_Hash::__toString(), PPNode_DOM::__toString(), PPCustomFrame_DOM::__toString(), PPTemplateFrame_DOM::__toString(), LinkCache::addLinkObj(), PPDAccum_Hash::addLiteral(), PPDStackElement::addPart(), PPDStack::addPart(), DatabaseSqlite::addQuotes(), DatabasePostgres::addQuotes(), DatabaseOracle::addQuotes(), DatabaseIbm_db2::addQuotes(), DatabaseBase::addQuotes(), ParserOutput::addWarning(), SpecialUpload::ajaxGetExistsWarning(), bottomLinks(), PPDStackElement::breakSyntax(), DatabaseBase::buildLike(), Xml::buildTable(), Xml::buildTableRow(), Language::caseFold(), Language::checkTitleEncoding(), LanguageEo::checkTitleEncoding(), ParserTest::chomp(), ApiResult::cleanUp_helper(), Article::commitRollback(), ExtensionInstaller::confirm(), Profiler::debug(), User::decodeOptions(), deleteThisPage(), SkinStandard::doAfterContent(), SkinNostalgia::doAfterContent(), SkinCologneBlue::doAfterContent(), SkinNostalgia::doBeforeContent(), SkinCologneBlue::doBeforeContent(), doBeforeContent(), WatchedItem::doDuplicateEntries(), LinkHolderArray::doVariants(), editThisPage(), Xml::encodeJsVar(), DatabaseBase::escapeLike(), BitmapHandler::escapeMagickProperty(), SpecialActiveUsers::execute(), PPFrame_Hash::expand(), PPFrame_DOM::expand(), extensionTabLinks(), Xml::fieldset(), Language::firstChar(), Language::formatNum(), IPUnblockForm::formatRow(), AllmessagesTablePager::formatRow(), TablePager::formatRow(), HistoryPager::formatRow(), CoreParserFunctions::fullurl(), CoreParserFunctions::fullurle(), Skin::generateUserJs(), Skin::generateUserStylesheet(), IndexPager::getBody(), ImageHistoryPseudoPager::getBody(), getCategoryLinks(), Credits::getContributors(), Credits::getCredits(), AllmessagesTablePager::getCustomisedStatuses(), Title::getEditURL(), HistoryPager::getEndBody(), ImageListPager::getForm(), OutputPage::getHeadItems(), TablePager::getHiddenFields(), DBQueryError::getHTML(), Interwiki::getInterwikiCached(), TablePager::getLimitSelect(), RevisionDeleter::getLogMessage(), TablePager::getNavigationBar(), Title::getPrefixedDBkey(), Title::getPrefixedText(), Title::getPrefixedURL(), PPFuzzTest::getReport(), TablePager::getStartBody(), HistoryPager::getStartBody(), DBQueryError::getText(), DBError::getText(), Status::getWikiText(), CdbFunctions::hash(), Language::hebrewNumeral(), HistoryPager::historyLine(), StringUtils::hungryDelimiterReplace(), User::idForName(), User::idFromName(), ImagePage::imageLinks(), PPFrame_Hash::implode(), PPFrame_DOM::implode(), PPFrame_Hash::implodeWithFlags(), PPFrame_DOM::implodeWithFlags(), ChangesList::insertAction(), ChangesList::insertArticleLink(), ChangesList::insertComment(), ChangesList::insertDateHeader(), ChangesList::insertDiffHist(), ChangesList::insertLog(), ChangesList::insertMove(), ChangesList::insertRollback(), ChangesList::insertTags(), ChangesList::insertTimestamp(), ChangesList::insertUserRelatedLinks(), lastModified(), CoreParserFunctions::lc(), CoreParserFunctions::lcfirst(), Language::listToText(), EditPage::livePreview(), User::loadFromDatabase(), CoreParserFunctions::localurl(), CoreParserFunctions::localurle(), logoText(), mainPageLink(), DatabasePostgres::makeConnectionString(), Linker::makeImageLink2(), PPFuzzTester::makeInputText(), LinkFilter::makeLike(), Linker::makeThumbLink2(), Parser::markerSkipCallback(), SkinCologneBlue::menuHead(), Parser::mergeSectionTrees(), Title::nameOf(), Language::normalize(), LanguageMl::normalize(), LanguageAr::normalize(), LanguageZh_hans::normalizeForSearch(), LanguageZh::normalizeForSearch(), LanguageYue::normalizeForSearch(), LanguageJa::normalizeForSearch(), otherLanguages(), pageStats(), pageSubtitle(), pageTitle(), pageTitleLinks(), LanguageConverter::parseCachedTable(), Language::parseFormattedNumber(), ApiBase::parseMultiValue(), RebuildTextIndex::populateSearchIndex(), SearchHighlighter::position(), printableLink(), ExtensionInstaller::prompt(), protectThisPage(), SkinStandard::quickBar(), SkinCologneBlue::quickBar(), DatabaseSqlite::quote_ident(), DatabasePostgres::quote_ident(), DatabaseOracle::quote_ident(), CdbTest::randomString(), SkinStandard::reallyGenerateUserStylesheet(), SkinSimple::reallyGenerateUserStylesheet(), SkinCologneBlue::reallyGenerateUserStylesheet(), Skin::reallyGenerateUserStylesheet(), OldChangesList::recentChangesLine(), Language::recodeForEdit(), Language::recodeInput(), Parser::replaceExternalLinks(), LinkHolderArray::replaceInternal(), Parser::replaceInternalLinks(), Parser_LinkHooks::replaceInternalLinks2(), Parser::replaceInternalLinks2(), MockDatabaseSqlite::replaceVars(), DatabaseSqlite::replaceVars(), Language::romanNumeral(), SkinCologneBlue::searchForm(), searchForm(), Maintenance::setBatchSize(), SpecialAllpages::showChunk(), ProtectedTitlesForm::showList(), ProtectedPagesForm::showList(), LogEventsList::showLogExtract(), Credits::showPage(), SpecialPrefixindex::showPrefixChunk(), Article::showRedirectedFromHeader(), SpecialAllpages::showToplevel(), ApiResult::size(), specialPagesList(), Parser::splitWhitespace(), Language::sprintfDate(), DatabaseSqlite::strencode(), DatabasePostgres::strencode(), DatabaseOracle::strencode(), DatabaseMysql::strencode(), DatabaseMssql::strencode(), DatabaseIbm_db2::strencode(), SkinCologneBlue::sysLinks(), talkLink(), ImageGallery::toHTML(), SkinNostalgia::topLinks(), topLinks(), Job::toString(), CoreParserFunctions::uc(), CoreParserFunctions::ucfirst(), CdbReader_PHP::unpack31(), CdbReader_PHP::unpackSigned(), CoreParserFunctions::urlencode(), CoreParserFunctions::urlFunction(), variantLinks(), watchThisPage(), SpecialRecentChanges::webOutput(), wfGzipHandler(), wfHtmlValidationHandler(), wfMangleFlashPolicy(), wfNumLink(), wfOut(), wfOutputHandler(), wfRFC822Phrase(), wfSpecialLinkSearch(), wfSpecialListusers(), wfSpecialNewimages(), wfSpecialWatchlist(), wfStrencode(), wfUrlencode(), wfVarDump(), wlDaysLink(), wlHoursLink(), LanguageZh_hans::wordSegmentation(), LanguageYue::wordSegmentation(), LanguageJa::wordSegmentation(), and OutputPage::wrapWikiMsg().
Definition at line 575 of file Skin.php.
Referenced by Parser::parse(), SkinSimple::reallyGenerateUserStylesheet(), and Skin::reallyGenerateUserStylesheet().