Go to the documentation of this file.
214 $hasTemplates =
false;
217 list( $this->localBasePath, $this->remoteBasePath ) =
227 $this->{$member} = (
array)$option;
230 $hasTemplates =
true;
231 $this->{$member} = (
array)$option;
234 case 'languageScripts':
237 if ( !is_array( $option ) ) {
238 throw new InvalidArgumentException(
239 "Invalid collated file path list error. " .
240 "'$option' given, array expected."
243 foreach ( $option
as $key =>
$value ) {
244 if ( !is_string( $key ) ) {
245 throw new InvalidArgumentException(
246 "Invalid collated file path list key error. " .
247 "'$key' given, string expected."
254 $this->deprecated = $option;
261 $option = array_values( array_unique( (
array)$option ) );
264 $this->{$member} = $option;
269 $this->{$member} = (
string)$option;
275 $this->{$member} = (bool)$option;
279 if ( $hasTemplates ) {
280 $this->dependencies[] =
'mediawiki.template';
282 foreach ( $this->templates
as $alias => $templatePath ) {
283 if ( is_int( $alias ) ) {
284 $alias = $templatePath;
286 $suffix = explode(
'.', $alias );
287 $suffix = end( $suffix );
288 $compilerModule =
'mediawiki.template.' . $suffix;
289 if ( $suffix !==
'html' && !in_array( $compilerModule, $this->dependencies ) ) {
290 $this->dependencies[] = $compilerModule;
324 if ( isset(
$options[
'remoteExtPath'] ) ) {
329 if ( isset(
$options[
'remoteSkinPath'] ) ) {
334 if ( array_key_exists(
'localBasePath',
$options ) ) {
338 if ( array_key_exists(
'remoteBasePath',
$options ) ) {
363 $urls[] = OutputPage::transformResourcePath(
401 if ( $this->hasGeneratedStyles ) {
404 return parent::getStyleURLsForDebug(
$context );
410 $urls[$mediaType] = [];
411 foreach ( $list
as $file ) {
412 $urls[$mediaType][] = OutputPage::transformResourcePath(
454 if ( !$this->skipFunction ) {
458 $localPath = $this->
getLocalPath( $this->skipFunction );
459 if ( !file_exists( $localPath ) ) {
460 throw new MWException( __METHOD__ .
": skip function file not found: \"$localPath\"" );
498 $files = array_merge( $files, $styleFiles );
502 self::tryForKey( $this->skinStyles,
$context->getSkin(),
'default' ),
506 foreach ( $skinFiles
as $styleFiles ) {
507 $files = array_merge( $files, $styleFiles );
511 $files = array_merge(
515 $context->getDebug() ? $this->debugScripts : [],
517 self::tryForKey( $this->skinScripts,
$context->getSkin(),
'default' )
519 if ( $this->skipFunction ) {
522 $files = array_map( [ $this,
'getLocalPath' ], $files );
528 $files = array_values( array_unique( $files ) );
533 return array_map( [ __CLASS__,
'safeFileHash' ], $files );
543 $summary = parent::getDefinitionSummary(
$context );
566 $options[$member] = $this->{$member};
577 $summary[] = [
'lessVars' => $lessVars ];
589 return $path->getLocalPath();
592 return "{$this->localBasePath}/$path";
601 return $path->getRemotePath();
604 return "{$this->remoteBasePath}/$path";
615 return preg_match(
'/\.less$/i',
$path ) ?
'less' :
'css';
630 if ( is_int( $key ) ) {
632 if ( !isset( $collatedFiles[$default] ) ) {
633 $collatedFiles[$default] = [];
635 $collatedFiles[$default][] =
$value;
636 } elseif ( is_array(
$value ) ) {
638 $optionValue =
$value[$option] ?? $default;
639 if ( !isset( $collatedFiles[$optionValue] ) ) {
640 $collatedFiles[$optionValue] = [];
642 $collatedFiles[$optionValue][] = $key;
645 return $collatedFiles;
658 if ( isset( $list[$key] ) && is_array( $list[$key] ) ) {
676 $files = array_merge(
679 self::tryForKey( $this->skinScripts,
$context->getSkin(),
'default' )
682 $files = array_merge( $files, $this->debugScripts );
685 return array_unique( $files, SORT_REGULAR );
701 foreach ( $fallbacks
as $lang ) {
721 return array_merge_recursive(
722 self::collateFilePathListByOption( $this->styles,
'media',
'all' ),
723 self::collateFilePathListByOption(
724 self::tryForKey( $this->skinStyles,
$context->getSkin(),
'default' ),
740 self::tryForKey( $this->skinStyles, $skinName ),
755 $internalSkinNames[] =
'default';
757 foreach ( $internalSkinNames
as $internalSkinName ) {
758 $styleFiles = array_merge_recursive(
773 $collatedStyleFiles = array_merge_recursive(
774 self::collateFilePathListByOption( $this->styles,
'media',
'all' ),
780 foreach ( $collatedStyleFiles
as $media => $styleFiles ) {
781 foreach ( $styleFiles
as $styleFile ) {
801 foreach ( array_unique(
$scripts, SORT_REGULAR )
as $fileName ) {
803 if ( !file_exists( $localPath ) ) {
804 throw new MWException( __METHOD__ .
": script file not found: \"$localPath\"" );
829 wfDeprecated( __METHOD__ .
' without a ResourceLoader context',
'1.27' );
836 foreach (
$styles as $media => $files ) {
837 $uniqueFiles = array_unique( $files, SORT_REGULAR );
839 foreach ( $uniqueFiles
as $file ) {
842 $styles[$media] = implode(
"\n", $styleFiles );
862 if ( !file_exists( $localPath ) ) {
863 $msg = __METHOD__ .
": style file not found: \"$localPath\"";
870 $this->hasGeneratedStyles =
true;
872 $style = $this->
stripBom( file_get_contents( $localPath ) );
876 $style = CSSJanus::transform( $style,
true,
false );
878 $localDir = dirname( $localPath );
879 $remoteDir = dirname( $remotePath );
881 $localFileRefs = CSSMin::getLocalFileReferences( $style, $localDir );
883 if ( file_exists( $file ) ) {
884 $this->localFileRefs[] = $file;
886 $this->missingLocalFileRefs[] = $file;
891 return CSSMin::remap( $style, $localDir, $remoteDir,
true );
919 $canBeStylesOnly = !(
922 || $this->debugScripts
924 || $this->languageScripts
925 || $this->skinScripts
926 || $this->dependencies
928 || $this->skipFunction
958 $cacheKey =
$cache->makeGlobalKey(
'LESS', $fileName, $varsHash );
959 $cachedCompile =
$cache->get( $cacheKey );
964 if ( isset( $cachedCompile[
'hash'] ) ) {
966 if ( $contentHash === $cachedCompile[
'hash'] ) {
967 $this->localFileRefs = array_merge( $this->localFileRefs, $cachedCompile[
'files'] );
968 return $cachedCompile[
'css'];
972 $compiler =
$context->getResourceLoader()->getLessCompiler(
$vars );
973 $css = $compiler->parseFile( $fileName )->getCss();
974 $files = $compiler->AllParsedFiles();
975 $this->localFileRefs = array_merge( $this->localFileRefs, $files );
995 foreach ( $this->templates
as $alias => $templatePath ) {
997 if ( is_int( $alias ) ) {
998 $alias = $templatePath;
1001 if ( file_exists( $localPath ) ) {
1002 $content = file_get_contents( $localPath );
1005 $msg = __METHOD__ .
": template file not found: \"$localPath\"";
1024 if ( substr_compare(
"\xef\xbb\xbf",
$input, 0, 3 ) === 0 ) {
1025 return substr(
$input, 3 );
getSkipFunction()
Get the skip function.
Object passed around to modules which contains information about the state of a specific loader reque...
array $styles
List of paths to CSS files to always include.
array $skinScripts
List of JavaScript files to include when using a specific skin.
array $debugScripts
List of paths to JavaScript files to include in debug mode.
static newDummyContext()
Return a dummy ResourceLoaderContext object suitable for passing into things that don't "really" need...
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
if(!isset( $args[0])) $lang
array $templates
Saves a list of the templates named by the modules.
getStyles(ResourceLoaderContext $context)
Get all styles for a given context.
getFileHashes(ResourceLoaderContext $context)
Helper method for getDefinitionSummary.
saveFileDependencies(ResourceLoaderContext $context, $localFileRefs)
Set the files this module depends on indirectly for a given skin.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImgAuthModifyHeaders':Executed just before a file is streamed to a user via img_auth.php, allowing headers to be modified beforehand. $title:LinkTarget object & $headers:HTTP headers(name=> 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 since 1.16! 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 since 1.28! 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) $result
bool $noflip
Whether CSSJanus flipping should be skipped for this module.
getScriptURLsForDebug(ResourceLoaderContext $context)
getFlip( $context)
Get whether CSS for this module should be flipped.
An object to represent a path to a JavaScript/CSS file, along with a remote and local base path,...
enableModuleContentVersion()
Disable module content versioning.
bool $debugRaw
Link to raw files in debug mode.
$wgExtensionAssetsPath
The URL path of the extensions directory.
bool $hasGeneratedStyles
Whether getStyleURLsForDebug should return raw file paths, or return load.php urls.
array $dependencies
List of modules this module depends on.
array $skinStyles
List of paths to CSS files to include when using specific skins.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
$wgStylePath
The URL path of the skins directory.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
getDefinitionSummary(ResourceLoaderContext $context)
Get the definition summary for this module.
static getFileContentsHash( $filePaths, $algo='md4')
Get a hash of the combined contents of one or more files, either by retrieving a previously-computed ...
static getSkinNames()
Fetch the set of available skins.
getLessVars(ResourceLoaderContext $context)
Get module-specific LESS variables, if any.
readStyleFiles(array $styles, $flip, $context=null)
Get the contents of a list of CSS files.
ResourceLoader module based on local JavaScript/CSS files.
getGroup()
Gets the name of the group this module should be loaded in.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
getSkinStyleFiles( $skinName)
Gets a list of file paths for all skin styles in the module used by the skin.
compileLessFile( $fileName, ResourceLoaderContext $context)
Compile a LESS file into CSS.
getAllStyleFiles()
Returns all style files and all skin style files used by this module.
if(is_array( $mode)) switch( $mode) $input
getStyleURLsForDebug(ResourceLoaderContext $context)
static extractBasePaths( $options=[], $localBasePath=null, $remoteBasePath=null)
Extract a pair of local and remote base paths from module definition information.
bool $raw
Whether mw.loader.state() call should be omitted.
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
array $messages
List of message keys used by this module.
getMessageBlob(ResourceLoaderContext $context)
Get the hash of the message blob.
array $languageScripts
List of JavaScript files to include when using a specific language.
stripBom( $input)
Takes an input string and removes the UTF-8 BOM character if present.
getDeprecationInformation()
Get JS representing deprecation information for the current module if available.
getDependencies(ResourceLoaderContext $context=null)
Gets list of names of modules this module depends on.
getTargets()
Get target(s) for the module, eg ['desktop'] or ['desktop', 'mobile'].
string $skipFunction
File name containing the body of the skip function.
string $group
Name of group to load this module in.
readStyleFile( $path, $flip, $context)
Reads a style file.
array $localFileRefs
Place where readStyleFile() tracks file dependencies.
readScriptFiles(array $scripts)
Get the contents of a list of JavaScript files.
static collateFilePathListByOption(array $list, $option, $default)
Collates file paths by option (where provided).
__construct( $options=[], $localBasePath=null, $remoteBasePath=null)
Constructs a new module from an options array.
string $localBasePath
Local base path, see __construct()
$wgResourceBasePath
The default 'remoteBasePath' value for instances of ResourceLoaderFileModule.
getScriptFiles(ResourceLoaderContext $context)
Get a list of script file paths for this module, in order of proper execution.
getStyleSheetLang( $path)
Infer the stylesheet language from a stylesheet file path.
Abstraction for ResourceLoader modules, with name registration and maxage functionality.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
static tryForKey(array $list, $key, $fallback=null)
Get a list of element that match a key, optionally using a fallback key.
getTemplates()
Takes named templates by the module and returns an array mapping.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
passed in as a query string parameter to the various URLs constructed here(i.e. $prevlink) $ldel you ll need to handle error messages
getFileDependencies(ResourceLoaderContext $context)
Get the files this module depends on indirectly for a given skin.
string $remoteBasePath
Remote base path, see __construct()
getMessages()
Gets list of message keys used by this module.
getAllSkinStyleFiles()
Gets a list of file paths for all skin style files in the module, for all available skins.
getStyleFiles(ResourceLoaderContext $context)
Get a list of file paths for all styles in this module, in order of proper inclusion.
getType()
Get the module's load type.
getScript(ResourceLoaderContext $context)
Gets all scripts for a given context concatenated together.
array $scripts
List of paths to JavaScript files to always include.
getLanguageScripts( $lang)
Get the set of language scripts for the given language, possibly using a fallback language.
static getFallbacksFor( $code, $mode=self::MESSAGES_FALLBACKS)
Get the ordered list of fallback languages.
array $missingLocalFileRefs
Place where readStyleFile() tracks file dependencies for non-existent files.
static getLocalServerInstance( $fallback=CACHE_NONE)
Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)