MediaWiki REL1_31
SkinFallbackTemplate.php
Go to the documentation of this file.
1<?php
2
19 private function findInstalledSkins() {
20 $styleDirectory = $this->config->get( 'StyleDirectory' );
21 // Get all subdirectories which might contains skins
22 $possibleSkins = scandir( $styleDirectory );
23 $possibleSkins = array_filter( $possibleSkins, function ( $maybeDir ) use ( $styleDirectory ) {
24 return $maybeDir !== '.' && $maybeDir !== '..' && is_dir( "$styleDirectory/$maybeDir" );
25 } );
26
27 // Filter out skins that aren't installed
28 $possibleSkins = array_filter( $possibleSkins, function ( $skinDir ) use ( $styleDirectory ) {
29 return is_file( "$styleDirectory/$skinDir/skin.json" )
30 || is_file( "$styleDirectory/$skinDir/$skinDir.php" );
31 } );
32
33 return $possibleSkins;
34 }
35
41 private function buildHelpfulInformationMessage() {
42 $defaultSkin = $this->config->get( 'DefaultSkin' );
43 $installedSkins = $this->findInstalledSkins();
44 $enabledSkins = SkinFactory::getDefaultInstance()->getSkinNames();
45 $enabledSkins = array_change_key_case( $enabledSkins, CASE_LOWER );
46
47 if ( $installedSkins ) {
48 $skinsInstalledText = [];
49 $skinsInstalledSnippet = [];
50
51 foreach ( $installedSkins as $skin ) {
52 $normalizedKey = strtolower( $skin );
53 $isEnabled = array_key_exists( $normalizedKey, $enabledSkins );
54 if ( $isEnabled ) {
55 $skinsInstalledText[] = $this->getMsg( 'default-skin-not-found-row-enabled' )
56 ->params( $normalizedKey, $skin )->plain();
57 } else {
58 $skinsInstalledText[] = $this->getMsg( 'default-skin-not-found-row-disabled' )
59 ->params( $normalizedKey, $skin )->plain();
60 $skinsInstalledSnippet[] = $this->getSnippetForSkin( $skin );
61 }
62 }
63
64 return $this->getMsg( 'default-skin-not-found' )->params(
65 $defaultSkin,
66 implode( "\n", $skinsInstalledText ),
67 implode( "\n", $skinsInstalledSnippet ) )->numParams(
68 count( $skinsInstalledText ),
69 count( $skinsInstalledSnippet )
70 )->parseAsBlock();
71 } else {
72 return $this->getMsg( 'default-skin-not-found-no-skins' )->params(
73 $defaultSkin
74 )->parseAsBlock();
75 }
76 }
77
84 private function getSnippetForSkin( $skin ) {
85 global $IP;
86 if ( file_exists( "$IP/skins/$skin/skin.json" ) ) {
87 return "wfLoadSkin( '$skin' );";
88 } else {
89 return "require_once \"\$IP/skins/$skin/$skin.php\";";
90 }
91 }
92
97 public function execute() {
98 $this->html( 'headelement' );
99 echo Html::warningBox( $this->buildHelpfulInformationMessage() );
100 ?>
101 <form action="<?php $this->text( 'wgScript' ) ?>">
102 <input type="hidden" name="title" value="<?php $this->text( 'searchtitle' ) ?>" />
103 <h3><label for="searchInput"><?php $this->msg( 'search' ) ?></label></h3>
104 <?php echo $this->makeSearchInput( [ "id" => "searchInput" ] ) ?>
105 <?php echo $this->makeSearchButton( 'go' ) ?>
106 </form>
107
108 <div class="mw-body" role="main">
109 <h1 class="firstHeading"><?php $this->html( 'title' ) ?></h1>
110
111 <div class="mw-body-content">
112 <?php $this->html( 'bodytext' ) ?>
113 <?php $this->html( 'catlinks' ) ?>
114 </div>
115 </div>
116
117 <?php $this->printTrail() ?>
118 </body></html>
119
120 <?php
121 }
122}
New base template for a skin's template extended from QuickTemplate this class features helper method...
makeSearchButton( $mode, $attrs=[])
printTrail()
Output getTrail.
getMsg( $name)
Get a Message object with its context set.
makeSearchInput( $attrs=[])
BaseTemplate class for the fallback skin.
buildHelpfulInformationMessage()
Inform the user why they are seeing this skin.
execute()
Outputs the entire contents of the page.
getSnippetForSkin( $skin)
Get the appropriate LocalSettings.php snippet to enable the given skin.
null means default in associative array form
Definition hooks.txt:1996
> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) name
Definition hooks.txt:1840
$IP
Definition update.php:3
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
Definition postgres.txt:30