MediaWiki
1.28.0
|
The main skin class which provides methods and properties for all other skins. More...
Public Member Functions | |
aboutLink () | |
Gets the link to the wiki's about page. More... | |
addToBodyAttributes ($out, &$bodyAttrs) | |
This will be called by OutputPage::headElement when it is creating the "<body>" tag, skins can override it if they have a need to add in any body attributes or classes of their own. More... | |
addToSidebar (&$bar, $message) | |
Add content from a sidebar system message Currently only used for MediaWiki:Sidebar (but may be used by Extensions) More... | |
addToSidebarPlain (&$bar, $text) | |
Add content from plain text. More... | |
bottomScripts () | |
This gets called shortly before the "</body>" tag. More... | |
buildSidebar () | |
Build an array that represents the sidebar(s), the navigation bar among them. More... | |
disclaimerLink () | |
Gets the link to the wiki's general disclaimers page. More... | |
doEditSectionLink (Title $nt, $section, $tooltip=null, $lang=false) | |
Create a section edit link. More... | |
drawCategoryBrowser ($tree) | |
Render the array as a series of links. More... | |
editUrlOptions () | |
Return URL options for the 'edit page' link. More... | |
escapeSearchLink () | |
footerLink ($desc, $page) | |
Returns an HTML link for use in the footer. More... | |
getCategories () | |
getCategoryLinks () | |
getCopyright ($type= 'detect') | |
getCopyrightIcon () | |
getDefaultModules () | |
Defines the ResourceLoader modules that should be added to the skin It is recommended that skins wishing to override call parent::getDefaultModules() and substitute out any modules they wish to change by using a key to look them up. More... | |
getHtmlElementAttributes () | |
Return values for <html> element. More... | |
getLogo () | |
URL to the logo. More... | |
getNewtalks () | |
Gets new talk page messages for the current user and returns an appropriate alert message (or an empty string if there are no messages) More... | |
getPageClasses ($title) | |
TODO: document. More... | |
getPoweredBy () | |
Gets the powered by MediaWiki icon. More... | |
getRelevantTitle () | |
Return the "relevant" title. More... | |
getRelevantUser () | |
Return the "relevant" user. More... | |
getRevisionId () | |
Get the current revision ID. More... | |
getSearchLink () | |
getSiteNotice () | |
Get the site notice. More... | |
getSkinName () | |
getSkinStylePath ($name) | |
Return a fully resolved style path url to images or styles stored in the current skins's folder. More... | |
getUndeleteLink () | |
initPage (OutputPage $out) | |
isRevisionCurrent () | |
Whether the revision displayed is the latest revision of the page. More... | |
logoText ($align= '') | |
mainPageLink () | |
Gets the link to the wiki's main page. More... | |
makeFooterIcon ($icon, $withImage= 'withImage') | |
Renders a $wgFooterIcons icon according to the method's arguments. More... | |
outputPage (OutputPage $out=null) | |
Outputs the HTML generated by other functions. More... | |
printSource () | |
Text with the permalink to the source page, usually shown on the footer of a printed page. More... | |
privacyLink () | |
Gets the link to the wiki's privacy policy page. More... | |
setRelevantTitle ($t) | |
Set the "relevant" title. More... | |
setRelevantUser ($u) | |
Set the "relevant" user. More... | |
setupSkinUserCss (OutputPage $out) | |
Add skin specific stylesheets Calling this method with an $out of anything but the same OutputPage inside ->getOutput() is deprecated. More... | |
showEmailUser ($id) | |
showIPinHeader () | |
subPageSubtitle ($out=null) | |
Public Member Functions inherited from ContextSource | |
canUseWikiPage () | |
Check whether a WikiPage object can be get with getWikiPage(). More... | |
exportSession () | |
Export the resolved user IP, HTTP headers, user ID, and session ID. More... | |
getConfig () | |
Get the Config object. More... | |
getContext () | |
Get the base IContextSource object. More... | |
getLanguage () | |
Get the Language object. More... | |
getOutput () | |
Get the OutputPage object. More... | |
getRequest () | |
Get the WebRequest object. More... | |
getSkin () | |
Get the Skin object. More... | |
getStats () | |
Get the Stats object. More... | |
getTiming () | |
Get the Timing object. More... | |
getTitle () | |
Get the Title object. More... | |
getUser () | |
Get the User object. More... | |
getWikiPage () | |
Get the WikiPage object. More... | |
msg () | |
Get a Message object with context set Parameters are the same as wfMessage() More... | |
setContext (IContextSource $context) | |
Set the IContextSource object. More... | |
Static Public Member Functions | |
static | checkTitle (&$title, $name) |
make sure we have some title to operate on More... | |
static | getAllowedSkins () |
Fetch the list of user-selectable skins in regards to $wgSkipSkins. More... | |
static | getDynamicStylesheetQuery () |
Get the query to generate a dynamic stylesheet. More... | |
static | getSkinNameMessages () |
Fetch the skinname messages for available skins. More... | |
static | getSkinNames () |
Fetch the set of available skins. More... | |
static | makeI18nUrl ($name, $urlaction= '') |
static | makeInternalOrExternalUrl ($name) |
If url string starts with http, consider as external URL, else internal. More... | |
static | makeKnownUrlDetails ($name, $urlaction= '') |
Make URL details where the article exists (or at least it's convenient to think so) More... | |
static | makeMainPageUrl ($urlaction= '') |
static | makeNSUrl ($name, $urlaction= '', $namespace=NS_MAIN) |
this can be passed the NS number as defined in Language.php More... | |
static | makeSpecialUrl ($name, $urlaction= '', $proto=null) |
Make a URL for a Special Page using the given query and protocol. More... | |
static | makeSpecialUrlSubpage ($name, $subpage, $urlaction= '') |
static | makeUrl ($name, $urlaction= '') |
static | makeUrlDetails ($name, $urlaction= '') |
these return an array with the 'href' and boolean 'exists' More... | |
static | makeVariablesScript ($data) |
static | normalizeKey ($key) |
Normalize a skin preference value to a form that can be loaded. More... | |
Public Attributes | |
string | $stylename = null |
Stylesheets set to use. More... | |
Protected Member Functions | |
afterContentHook () | |
This runs a hook to allow extensions placing their stuff after content and article metadata (e.g. More... | |
generateDebugHTML () | |
Generate debug data HTML for displaying at the bottom of the main content area. More... | |
lastModified () | |
Get the timestamp of the latest revision, formatted in user language. More... | |
preloadExistence () | |
Preload the existence of three commonly-requested pages in a single query. More... | |
Protected Attributes | |
$mRelevantTitle = null | |
$mRelevantUser = null | |
$skinname = null | |
Private Member Functions | |
getCachedNotice ($name) | |
Get a cached notice. More... | |
The main skin class which provides methods and properties for all other skins.
See docs/skin.txt for more information.
Skin::aboutLink | ( | ) |
Gets the link to the wiki's about page.
Definition at line 957 of file Skin.php.
References footerLink().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::addToBodyAttributes | ( | $out, | |
& | $bodyAttrs | ||
) |
This will be called by OutputPage::headElement when it is creating the "<body>" tag, skins can override it if they have a need to add in any body attributes or classes of their own.
OutputPage | $out | |
array | $bodyAttrs |
Definition at line 412 of file Skin.php.
Referenced by OutputPage\headElement().
Skin::addToSidebar | ( | & | $bar, |
$message | |||
) |
Add content from a sidebar system message Currently only used for MediaWiki:Sidebar (but may be used by Extensions)
This is just a wrapper around addToSidebarPlain() for backwards compatibility
array | $bar | |
string | $message |
Definition at line 1229 of file Skin.php.
References addToSidebarPlain(), plain, and wfMessage().
Skin::addToSidebarPlain | ( | & | $bar, |
$text | |||
) |
Add content from plain text.
array | $bar | |
string | $text |
Definition at line 1240 of file Skin.php.
References $line, $lines, $link, $title, as, Sanitizer\escapeId(), ContextSource\getConfig(), ContextSource\getTitle(), global, ContextSource\msg(), Title\newFromText(), Title\newMainPage(), MessageCache\singleton(), wfMatchesDomainList(), and wfUrlProtocols().
Referenced by addToSidebar(), and SideBarTest\assertSideBar().
|
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.
Definition at line 554 of file Skin.php.
References Hooks\run(), and wfDebug().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::bottomScripts | ( | ) |
This gets called shortly before the "</body>" tag.
Definition at line 589 of file Skin.php.
References ContextSource\getOutput(), and Hooks\run().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::buildSidebar | ( | ) |
Build an array that represents the sidebar(s), the navigation bar among them.
BaseTemplate::getSidebar can be used to simplify the format and id generation in new skins.
The format of the returned array is [ heading => content, ... ], where:
Note that extensions can control the sidebar contents using the SkinBuildSidebar hook and can technically insert anything in here; skin creators are expected to handle values described above.
Definition at line 1188 of file Skin.php.
References $cache, $wgEnableSidebarCache, $wgSidebarCacheExpiry, ObjectCache\getMainWANInstance(), global, Hooks\run(), MessageCache\singleton(), and use.
Referenced by SkinTemplate\prepareQuickTemplate().
|
static |
Skin::disclaimerLink | ( | ) |
Gets the link to the wiki's general disclaimers page.
Definition at line 965 of file Skin.php.
References footerLink().
Referenced by SkinTemplate\prepareQuickTemplate().
Create a section edit link.
This supersedes editSectionLink() and editSectionLinkForOther().
Title | $nt | The title being linked to (may not be the same as the current page, if the section is included from a template) |
string | $section | The designation of the section being pointed to, to be included in the link, like "§ion=$section" |
string | $tooltip | The tooltip to use for the link: will be escaped and wrapped in the 'editsectionhint' message |
string | $lang | Language code |
Definition at line 1513 of file Skin.php.
References $attribs, $lang, $section, as, Sanitizer\decodeCharReferences(), Linker\link(), Hooks\run(), text, wfGetLangObj(), and wfMessage().
Skin::drawCategoryBrowser | ( | $tree | ) |
Render the array as a series of links.
array | $tree | Categories tree returned by Title::getParentCategoryTree |
Definition at line 496 of file Skin.php.
References as, Linker\link(), and Title\newFromText().
Referenced by getCategoryLinks().
Skin::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 976 of file Skin.php.
References $options, getRevisionId(), and isRevisionCurrent().
Referenced by SkinTemplate\buildContentNavigationUrls().
Skin::escapeSearchLink | ( | ) |
Definition at line 725 of file Skin.php.
References getSearchLink().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::footerLink | ( | $desc, | |
$page | |||
) |
Returns an HTML link for use in the footer.
string | $desc | The i18n message key for the link text |
string | $page | The i18n message key for the page to link to |
Definition at line 923 of file Skin.php.
References $page, $title, Linker\linkKnown(), ContextSource\msg(), Title\newFromText(), and text.
Referenced by aboutLink(), disclaimerLink(), and privacyLink().
|
protected |
Generate debug data HTML for displaying at the bottom of the main content area.
Definition at line 580 of file Skin.php.
References MWDebug\getHTMLDebugLog().
Referenced by SkinTemplate\prepareQuickTemplate().
|
static |
Fetch the list of user-selectable skins in regards to $wgSkipSkins.
Useful for Special:Preferences and other places where you only want to show skins users can use.
Definition at line 72 of file Skin.php.
References $wgSkipSkins, as, and global.
Referenced by ApiQuerySiteinfo\appendSkins(), and Preferences\generateSkinOptions().
|
private |
Get a cached notice.
string | $name | Message name, or 'default' for $wgSiteNotice |
Definition at line 1426 of file Skin.php.
References $name, $parserMemc, $wgContLang, $wgRenderHashAppend, $wgSiteNotice, ContextSource\getOutput(), global, ContextSource\msg(), Html\rawElement(), and wfMemcKey().
Referenced by getSiteNotice().
Skin::getCategories | ( | ) |
Definition at line 519 of file Skin.php.
References $out, getCategoryLinks(), ContextSource\getOutput(), ContextSource\getTitle(), ContextSource\getUser(), NS_CATEGORY, and Html\rawElement().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::getCategoryLinks | ( | ) |
Definition at line 428 of file Skin.php.
References $link, $out, $s, $t, $title, drawCategoryBrowser(), ContextSource\getOutput(), ContextSource\getTitle(), ContextSource\getUser(), global, Linker\link(), ContextSource\msg(), Title\newFromText(), NS_CATEGORY, and wfMessage().
Referenced by getCategories().
Skin::getCopyright | ( | $type = 'detect' | ) |
string | $type |
Definition at line 733 of file Skin.php.
References $link, $title, $type, ContextSource\getTitle(), global, isRevisionCurrent(), Linker\linkKnown(), Linker\makeExternalLink(), ContextSource\msg(), Title\newFromText(), and Hooks\run().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::getCopyrightIcon | ( | ) |
Definition at line 779 of file Skin.php.
References $out, $wgFooterIcons, and global.
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::getDefaultModules | ( | ) |
Defines the ResourceLoader modules that should be added to the skin It is recommended that skins wishing to override call parent::getDefaultModules() and substitute out any modules they wish to change by using a key to look them up.
Definition at line 154 of file Skin.php.
References $modules, $out, $user, ResourceLoaderStartUpModule\getLegacyModules(), ContextSource\getOutput(), getRelevantTitle(), and global.
|
static |
Get the query to generate a dynamic stylesheet.
Definition at line 341 of file Skin.php.
References $wgSquidMaxage, and global.
Referenced by FileRepo\getDescriptionStylesheetUrl().
Skin::getHtmlElementAttributes | ( | ) |
Return values for <html> element.
Definition at line 396 of file Skin.php.
References $lang, and ContextSource\getLanguage().
Referenced by OutputPage\headElement().
Skin::getLogo | ( | ) |
URL to the logo.
Definition at line 420 of file Skin.php.
References $wgLogo, and global.
Referenced by logoText().
Skin::getNewtalks | ( | ) |
Gets new talk page messages for the current user and returns an appropriate alert message (or an empty string if there are no messages)
Definition at line 1332 of file Skin.php.
References $newtalks, $out, $user, as, Xml\element(), ContextSource\getOutput(), ContextSource\getUser(), Linker\linkKnown(), ContextSource\msg(), Revision\newFromTitle(), Hooks\run(), and wfWikiID().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::getPageClasses | ( | $title | ) |
TODO: document.
Title | $title |
Definition at line 368 of file Skin.php.
References $name, $title, $type, Sanitizer\escapeClass(), list, and SpecialPageFactory\resolveAlias().
Referenced by OutputPage\headElement().
Skin::getPoweredBy | ( | ) |
Gets the powered by MediaWiki icon.
Definition at line 809 of file Skin.php.
References $wgResourceBasePath, global, and Hooks\run().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::getRelevantTitle | ( | ) |
Return the "relevant" title.
A "relevant" title is not necessarily the actual title of the page. Special pages like Special:MovePage use set the page they are acting on as their "relevant" title, this allows the skin system to display things such as content tabs which belong to to that page instead of displaying a basic special page tab which has almost no meaning.
Definition at line 267 of file Skin.php.
References $mRelevantTitle, and ContextSource\getTitle().
Referenced by SkinTemplate\buildContentNavigationUrls(), getDefaultModules(), getRelevantUser(), and preloadExistence().
Skin::getRelevantUser | ( | ) |
Return the "relevant" user.
A "relevant" user is similar to a relevant title. Special pages like Special:Contributions mark the user which they are relevant to so that things like the toolbox can display the information they usually are only able to display on a user's userpage and talkpage.
Definition at line 291 of file Skin.php.
References $mRelevantUser, $title, $user, getRelevantTitle(), User\isIP(), User\newFromName(), and NS_USER.
Referenced by SkinTemplate\buildNavUrls().
Skin::getRevisionId | ( | ) |
Get the current revision ID.
Definition at line 234 of file Skin.php.
References ContextSource\getOutput().
Referenced by SkinTemplate\buildNavUrls(), editUrlOptions(), isRevisionCurrent(), lastModified(), and printSource().
Skin::getSearchLink | ( | ) |
Definition at line 717 of file Skin.php.
References $searchPage, and SpecialPage\getTitleFor().
Referenced by escapeSearchLink().
Skin::getSiteNotice | ( | ) |
Get the site notice.
Definition at line 1477 of file Skin.php.
References getCachedNotice(), ContextSource\getUser(), and Hooks\run().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::getSkinName | ( | ) |
Definition at line 137 of file Skin.php.
References $skinname.
Referenced by OutputPage\headElement().
|
static |
|
static |
Fetch the set of available skins.
Definition at line 49 of file Skin.php.
References SkinFactory\getDefaultInstance().
Referenced by ResourceLoaderContext\__construct(), ApiQuerySiteinfo\appendSkins(), ResourceLoaderFileModule\getAllSkinStyleFiles(), ResourceLoaderStartUpModule\getConfigSettings(), EditPage\isWrongCaseCssJsPage(), and normalizeKey().
Skin::getSkinStylePath | ( | $name | ) |
Return a fully resolved style path url to images or styles stored in the current skins's folder.
This method returns a url resolved using the configured skin style path and includes the style version inside of the url.
Requires $stylename to be set, otherwise throws MWException.
string | $name | The name or path of a skin resource file |
MWException |
Definition at line 1014 of file Skin.php.
References $wgStylePath, $wgStyleVersion, and global.
Skin::getUndeleteLink | ( | ) |
Definition at line 623 of file Skin.php.
References ContextSource\getRequest(), ContextSource\getTitle(), SpecialPage\getTitleFor(), ContextSource\getUser(), Linker\linkKnown(), and ContextSource\msg().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::initPage | ( | OutputPage | $out | ) |
OutputPage | $out |
Definition at line 144 of file Skin.php.
References preloadExistence().
Referenced by SkinTemplate\outputPage().
Skin::isRevisionCurrent | ( | ) |
Whether the revision displayed is the latest revision of the page.
Definition at line 243 of file Skin.php.
References getRevisionId(), and ContextSource\getTitle().
Referenced by SkinTemplate\buildContentNavigationUrls(), editUrlOptions(), getCopyright(), and SkinTemplate\prepareQuickTemplate().
|
protected |
Get the timestamp of the latest revision, formatted in user language.
Definition at line 833 of file Skin.php.
References $s, $t, $timestamp, ContextSource\getLanguage(), ContextSource\getOutput(), getRevisionId(), Revision\getTimestampFromId(), ContextSource\getTitle(), ContextSource\getUser(), ContextSource\msg(), and wfGetLB().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::logoText | ( | $align = '' | ) |
string | $align |
Definition at line 860 of file Skin.php.
References $s, getLogo(), ContextSource\msg(), and Title\newMainPage().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::mainPageLink | ( | ) |
Gets the link to the wiki's main page.
Definition at line 908 of file Skin.php.
References $s, Linker\linkKnown(), ContextSource\msg(), and Title\newMainPage().
Skin::makeFooterIcon | ( | $icon, | |
$withImage = 'withImage' |
|||
) |
Renders a $wgFooterIcons icon according to the method's arguments.
array | $icon | The icon to build the html for, see $wgFooterIcons for the format of this array. |
bool | string | $withImage | Whether to use the icon's image or output a text-only footericon. |
Definition at line 885 of file Skin.php.
References $html, Html\element(), and Html\rawElement().
|
static |
string | $name | |
string | $urlaction |
Definition at line 1074 of file Skin.php.
References $name, $title, Title\newFromText(), text, and wfMessage().
|
static |
If url string starts with http, consider as external URL, else internal.
string | $name |
Definition at line 1098 of file Skin.php.
References $name, and wfUrlProtocols().
Referenced by EmailNotification\composeCommonMailtext(), LoginSignupSpecialPage\getFieldDefinitions(), EditPage\showIntro(), and EditPage\showStandardInputs().
|
static |
|
static |
string | $urlaction |
Definition at line 1031 of file Skin.php.
References $title, and Title\newMainPage().
|
static |
this can be passed the NS number as defined in Language.php
string | $name | |
string | $urlaction | |
int | $namespace |
Definition at line 1113 of file Skin.php.
References $name, $title, and Title\makeTitleSafe().
|
static |
Make a URL for a Special Page using the given query and protocol.
If $proto is set to null, make a local URL. Otherwise, make a full URL with the protocol specified.
string | $name | Name of the Special page |
string | $urlaction | Query to append |
string | null | $proto | Protocol to use or null for a local URL |
Definition at line 1049 of file Skin.php.
References $name, $title, and SpecialPage\getSafeTitleFor().
|
static |
string | $name | |
string | $subpage | |
string | $urlaction |
Definition at line 1064 of file Skin.php.
References $name, $title, and SpecialPage\getSafeTitleFor().
|
static |
string | $name | |
string | $urlaction |
Definition at line 1085 of file Skin.php.
References $name, $title, and Title\newFromText().
Referenced by Action\addHelpLink(), SpecialPage\addHelpLink(), and Article\addHelpLink().
|
static |
these return an array with the 'href' and boolean 'exists'
string | $name | |
string | $urlaction |
Definition at line 1126 of file Skin.php.
References $name, $title, and Title\newFromText().
|
static |
array | $data |
Definition at line 326 of file Skin.php.
References ResourceLoader\makeConfigSetScript(), and ResourceLoader\makeInlineScript().
|
static |
Normalize a skin preference value to a form that can be loaded.
If a skin can't be found, it will fall back to the configured default ($wgDefaultSkin), or the hardcoded default ($wgFallbackSkin) if the default skin is unavailable too.
string | $key | 'monobook', 'vector', etc. |
Definition at line 93 of file Skin.php.
References $fallback, $wgDefaultSkin, $wgFallbackSkin, getSkinNames(), and global.
Referenced by ApiQuerySiteinfo\appendSkins(), User\getDefaultOptions(), and RequestContext\getSkin().
|
abstract |
Outputs the HTML generated by other functions.
OutputPage | $out |
|
protected |
Preload the existence of three commonly-requested pages in a single query.
Definition at line 200 of file Skin.php.
References $title, $titles, $user, getRelevantTitle(), ContextSource\getUser(), and Hooks\run().
Referenced by initPage().
Skin::printSource | ( | ) |
Text with the permalink to the source page, usually shown on the footer of a printed page.
Definition at line 605 of file Skin.php.
References getRevisionId(), ContextSource\getTitle(), ContextSource\msg(), and wfExpandIRI().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::privacyLink | ( | ) |
Gets the link to the wiki's privacy policy page.
Definition at line 949 of file Skin.php.
References footerLink().
Referenced by SkinTemplate\prepareQuickTemplate().
Skin::setRelevantTitle | ( | $t | ) |
Skin::setRelevantUser | ( | $u | ) |
|
abstract |
Add skin specific stylesheets Calling this method with an $out of anything but the same OutputPage inside ->getOutput() is deprecated.
The $out arg is kept for compatibility purposes with skins.
OutputPage | $out |
Skin::showEmailUser | ( | $id | ) |
User | int | $id |
Definition at line 990 of file Skin.php.
References ContextSource\getUser(), and User\newFromId().
Referenced by SkinTemplate\buildNavUrls().
Skin::showIPinHeader | ( | ) |
Definition at line 709 of file Skin.php.
References wfDeprecated().
Skin::subPageSubtitle | ( | $out = null | ) |
OutputPage | $out | Defaults to $this->getOutput() if left as null |
Definition at line 652 of file Skin.php.
References $lang, $link, $out, $title, as, ContextSource\getLanguage(), ContextSource\getOutput(), MWNamespace\hasSubpages(), Linker\linkKnown(), ContextSource\msg(), Title\newFromText(), and Hooks\run().
Referenced by SkinTemplate\prepareQuickTemplate().
|
protected |
Definition at line 36 of file Skin.php.
Referenced by getRelevantTitle().
|
protected |
Definition at line 37 of file Skin.php.
Referenced by getRelevantUser().
|
protected |
Definition at line 35 of file Skin.php.
Referenced by getSkinName().
string Skin::$stylename = null |
Stylesheets set to use.
Subdirectory in skins/ where various stylesheets are located. Only needs to be set if you intend to use the getSkinStylePath() method.