MediaWiki REL1_32
SyntaxHighlight.php
Go to the documentation of this file.
1<?php
20
22
24 const HIGHLIGHT_MAX_LINES = 1000;
25
27 const HIGHLIGHT_MAX_BYTES = 102400;
28
30 const HIGHLIGHT_CSS_CLASS = 'mw-highlight';
31
33 const CACHE_VERSION = 2;
34
36 private static $mimeLexers = [
37 'text/javascript' => 'javascript',
38 'application/json' => 'javascript',
39 'text/xml' => 'xml',
40 ];
41
48 private static function getLexer( $lang ) {
49 static $lexers = null;
50
51 if ( $lang === null ) {
52 return null;
53 }
54
55 if ( !$lexers ) {
56 $lexers = require __DIR__ . '/../SyntaxHighlight.lexers.php';
57 }
58
59 $lexer = strtolower( $lang );
60
61 if ( isset( $lexers[$lexer] ) ) {
62 return $lexer;
63 }
64
66
67 // Check if this is a GeSHi lexer name for which there exists
68 // a compatible Pygments lexer with a different name.
69 if ( isset( $geshi2pygments[$lexer] ) ) {
70 $lexer = $geshi2pygments[$lexer];
71 if ( in_array( $lexer, $lexers ) ) {
72 return $lexer;
73 }
74 }
75
76 return null;
77 }
78
84 public static function onParserFirstCallInit( Parser &$parser ) {
85 foreach ( [ 'source', 'syntaxhighlight' ] as $tag ) {
86 $parser->setHook( $tag, [ 'SyntaxHighlight', 'parserHook' ] );
87 }
88 }
89
99 public static function parserHook( $text, $args, $parser ) {
100 // Replace strip markers (For e.g. {{#tag:syntaxhighlight|<nowiki>...}})
101 $out = $parser->mStripState->unstripNoWiki( $text );
102
103 // Don't trim leading spaces away, just the linefeeds
104 $out = preg_replace( '/^\n+/', '', rtrim( $out ) );
105
106 // Convert deprecated attributes
107 if ( isset( $args['enclose'] ) ) {
108 if ( $args['enclose'] === 'none' ) {
109 $args['inline'] = true;
110 }
111 unset( $args['enclose'] );
112 }
113
114 $lexer = isset( $args['lang'] ) ? $args['lang'] : '';
115
116 $result = self::highlight( $out, $lexer, $args );
117 if ( !$result->isGood() ) {
118 $parser->addTrackingCategory( 'syntaxhighlight-error-category' );
119 }
120 $out = $result->getValue();
121
122 // Allow certain HTML attributes
123 $htmlAttribs = Sanitizer::validateAttributes( $args, [ 'style', 'class', 'id', 'dir' ] );
124 if ( !isset( $htmlAttribs['class'] ) ) {
125 $htmlAttribs['class'] = self::HIGHLIGHT_CSS_CLASS;
126 } else {
127 $htmlAttribs['class'] .= ' ' . self::HIGHLIGHT_CSS_CLASS;
128 }
129 if ( !( isset( $htmlAttribs['dir'] ) && $htmlAttribs['dir'] === 'rtl' ) ) {
130 $htmlAttribs['dir'] = 'ltr';
131 }
132
133 if ( isset( $args['inline'] ) ) {
134 // Enforce inlineness. Stray newlines may result in unexpected list and paragraph processing
135 // (also known as doBlockLevels()).
136 $out = str_replace( "\n", ' ', $out );
137 $out = Html::rawElement( 'code', $htmlAttribs, $out );
138
139 } else {
140 // Not entirely sure what benefit this provides, but it was here already
141 $htmlAttribs['class'] .= ' ' . 'mw-content-' . $htmlAttribs['dir'];
142
143 // Unwrap Pygments output to provide our own wrapper. We can't just always use the 'nowrap'
144 // option (pass 'inline'), since it disables other useful things like line highlighting.
145 // Tolerate absence of quotes for Html::element() and wgWellFormedXml=false.
146 if ( $out !== '' ) {
147 $m = [];
148 if ( preg_match( '/^<div class="?mw-highlight"?>(.*)<\/div>$/s', trim( $out ), $m ) ) {
149 $out = trim( $m[1] );
150 } else {
151 throw new MWException( 'Unexpected output from Pygments encountered' );
152 }
153 }
154
155 // Use 'nowiki' strip marker to prevent list processing (also known as doBlockLevels()).
156 // However, leave the wrapping <div/> outside to prevent <p/>-wrapping.
157 $marker = $parser::MARKER_PREFIX . '-syntaxhighlightinner-' .
158 sprintf( '%08X', $parser->mMarkerIndex++ ) . $parser::MARKER_SUFFIX;
159 $parser->mStripState->addNoWiki( $marker, $out );
160
161 $out = Html::openElement( 'div', $htmlAttribs ) .
162 $marker .
163 Html::closeElement( 'div' );
164 }
165
166 // Register CSS
167 // TODO: Consider moving to a separate method so that public method
168 // highlight() can be used without needing to know the module name.
169 $parser->getOutput()->addModuleStyles( 'ext.pygments' );
170
171 return $out;
172 }
173
177 public static function getPygmentizePath() {
178 global $wgPygmentizePath;
179
180 // If $wgPygmentizePath is unset, use the bundled copy.
181 if ( $wgPygmentizePath === false ) {
182 $wgPygmentizePath = __DIR__ . '/../pygments/pygmentize';
183 }
184
185 return $wgPygmentizePath;
186 }
187
192 private static function plainCodeWrap( $code, $inline ) {
193 if ( $inline ) {
194 return htmlspecialchars( $code, ENT_NOQUOTES );
195 }
196
197 return Html::rawElement(
198 'div',
199 [ 'class' => self::HIGHLIGHT_CSS_CLASS ],
200 Html::element( 'pre', [], $code )
201 );
202 }
203
222 public static function highlight( $code, $lang = null, $args = [] ) {
223 $status = new Status;
224
225 $lexer = self::getLexer( $lang );
226 if ( $lexer === null && $lang !== null ) {
227 $status->warning( 'syntaxhighlight-error-unknown-language', $lang );
228 }
229
230 // For empty tag, output nothing instead of empty <pre>.
231 if ( $code === '' ) {
232 $status->value = '';
233 return $status;
234 }
235
236 $length = strlen( $code );
237 if ( strlen( $code ) > self::HIGHLIGHT_MAX_BYTES ) {
238 // Disable syntax highlighting
239 $lexer = null;
240 $status->warning(
241 'syntaxhighlight-error-exceeds-size-limit',
242 $length,
243 self::HIGHLIGHT_MAX_BYTES
244 );
245 } elseif ( Shell::isDisabled() ) {
246 // Disable syntax highlighting
247 $lexer = null;
248 $status->warning( 'syntaxhighlight-error-pygments-invocation-failure' );
249 wfWarn(
250 'MediaWiki determined that it cannot invoke Pygments. ' .
251 'As a result, SyntaxHighlight_GeSHi will not perform any syntax highlighting. ' .
252 'See the debug log for details: ' .
253 'https://www.mediawiki.org/wiki/Manual:$wgDebugLogFile'
254 );
255 }
256
257 $inline = isset( $args['inline'] );
258
259 if ( $inline ) {
260 $code = trim( $code );
261 }
262
263 if ( $lexer === null ) {
264 // When syntax highlighting is disabled..
265 $status->value = self::plainCodeWrap( $code, $inline );
266 return $status;
267 }
268
269 $options = [
270 'cssclass' => self::HIGHLIGHT_CSS_CLASS,
271 'encoding' => 'utf-8',
272 ];
273
274 // Line numbers
275 if ( isset( $args['line'] ) ) {
276 $options['linenos'] = 'inline';
277 }
278
279 if ( $lexer === 'php' && strpos( $code, '<?php' ) === false ) {
280 $options['startinline'] = 1;
281 }
282
283 // Highlight specific lines
284 if ( isset( $args['highlight'] ) ) {
285 $lines = self::parseHighlightLines( $args['highlight'] );
286 if ( count( $lines ) ) {
287 $options['hl_lines'] = implode( ' ', $lines );
288 }
289 }
290
291 // Starting line number
292 if ( isset( $args['start'] ) && ctype_digit( $args['start'] ) ) {
293 $options['linenostart'] = (int)$args['start'];
294 }
295
296 if ( $inline ) {
297 $options['nowrap'] = 1;
298 }
299
300 $cache = ObjectCache::getMainWANInstance();
301 $error = null;
302 $output = $cache->getWithSetCallback(
303 $cache->makeGlobalKey( 'highlight', self::makeCacheKeyHash( $code, $lexer, $options ) ),
304 $cache::TTL_MONTH,
305 function ( $oldValue, &$ttl ) use ( $code, $lexer, $options, &$error ) {
306 $optionPairs = [];
307 foreach ( $options as $k => $v ) {
308 $optionPairs[] = "{$k}={$v}";
309 }
310 $result = Shell::command(
311 self::getPygmentizePath(),
312 '-l', $lexer,
313 '-f', 'html',
314 '-O', implode( ',', $optionPairs )
315 )
316 ->input( $code )
317 ->restrict( Shell::RESTRICT_DEFAULT | Shell::NO_NETWORK )
318 ->execute();
319
320 if ( $result->getExitCode() != 0 ) {
321 $ttl = WANObjectCache::TTL_UNCACHEABLE;
322 $error = $result->getStderr();
323 return null;
324 }
325
326 return $result->getStdout();
327 }
328 );
329
330 if ( $error !== null || $output === null ) {
331 $status->warning( 'syntaxhighlight-error-pygments-invocation-failure' );
332 wfWarn( 'Failed to invoke Pygments: ' . $error );
333 // Fall back to preformatted code without syntax highlighting
334 $output = self::plainCodeWrap( $code, $inline );
335 }
336
337 if ( $inline ) {
338 // We've already trimmed the input $code before highlighting,
339 // but pygment's standard out adds a line break afterwards,
340 // which would then be preserved in the paragraph that wraps this,
341 // and become visible as a space. Avoid that.
342 $output = trim( $output );
343 }
344
345 $status->value = $output;
346 return $status;
347 }
348
357 private static function makeCacheKeyHash( $code, $lexer, $options ) {
358 $optionString = FormatJson::encode( $options, false, FormatJson::ALL_OK );
359 return md5( "{$code}|{$lexer}|{$optionString}|" . self::CACHE_VERSION );
360 }
361
371 protected static function parseHighlightLines( $lineSpec ) {
372 $lines = [];
373 $values = array_map( 'trim', explode( ',', $lineSpec ) );
374 foreach ( $values as $value ) {
375 if ( ctype_digit( $value ) ) {
376 $lines[] = (int)$value;
377 } elseif ( strpos( $value, '-' ) !== false ) {
378 list( $start, $end ) = array_map( 'trim', explode( '-', $value ) );
379 if ( self::validHighlightRange( $start, $end ) ) {
380 for ( $i = intval( $start ); $i <= $end; $i++ ) {
381 $lines[] = $i;
382 }
383 }
384 }
385 if ( count( $lines ) > self::HIGHLIGHT_MAX_LINES ) {
386 $lines = array_slice( $lines, 0, self::HIGHLIGHT_MAX_LINES );
387 break;
388 }
389 }
390 return $lines;
391 }
392
399 protected static function validHighlightRange( $start, $end ) {
400 // Since we're taking this tiny range and producing a an
401 // array of every integer between them, it would be trivial
402 // to DoS the system by asking for a huge range.
403 // Impose an arbitrary limit on the number of lines in a
404 // given range to reduce the impact.
405 return ctype_digit( $start ) &&
406 ctype_digit( $end ) &&
407 $start > 0 &&
408 $start < $end &&
409 $end - $start < self::HIGHLIGHT_MAX_LINES;
410 }
411
425 public static function onContentGetParserOutput( Content $content, Title $title,
426 $revId, ParserOptions $options, $generateHtml, ParserOutput &$output
427 ) {
429
430 if ( !$generateHtml ) {
431 // Nothing special for us to do, let MediaWiki handle this.
432 return true;
433 }
434
435 // Determine the language
436 $extension = ExtensionRegistry::getInstance();
437 $models = $extension->getAttribute( 'SyntaxHighlightModels' );
438 $model = $content->getModel();
439 if ( !isset( $models[$model] ) ) {
440 // We don't care about this model, carry on.
441 return true;
442 }
443 $lexer = $models[$model];
444
445 // Hope that $wgSyntaxHighlightModels does not contain silly types.
446 $text = ContentHandler::getContentText( $content );
447 if ( !$text ) {
448 // Oops! Non-text content? Let MediaWiki handle this.
449 return true;
450 }
451
452 // Parse using the standard parser to get links etc. into the database, HTML is replaced below.
453 // We could do this using $content->fillParserOutput(), but alas it is 'protected'.
454 if ( $content instanceof TextContent && in_array( $model, $wgTextModelsToParse ) ) {
455 $output = $wgParser->parse( $text, $title, $options, true, true, $revId );
456 }
457
458 $status = self::highlight( $text, $lexer );
459 if ( !$status->isOK() ) {
460 return true;
461 }
462 $out = $status->getValue();
463
464 $output->addModuleStyles( 'ext.pygments' );
465 $output->setText( '<div dir="ltr">' . $out . '</div>' );
466
467 // Inform MediaWiki that we have parsed this page and it shouldn't mess with it.
468 return false;
469 }
470
481 public static function onApiFormatHighlight( IContextSource $context, $text, $mime, $format ) {
482 if ( !isset( self::$mimeLexers[$mime] ) ) {
483 return true;
484 }
485
486 $lexer = self::$mimeLexers[$mime];
487 $status = self::highlight( $text, $lexer );
488 if ( !$status->isOK() ) {
489 return true;
490 }
491
492 $out = $status->getValue();
493 if ( preg_match( '/^<pre([^>]*)>/i', $out, $m ) ) {
494 $attrs = Sanitizer::decodeTagAttributes( $m[1] );
495 $attrs['class'] .= ' api-pretty-content';
496 $encodedAttrs = Sanitizer::safeEncodeTagAttributes( $attrs );
497 $out = '<pre' . $encodedAttrs . '>' . substr( $out, strlen( $m[0] ) );
498 }
499 $output = $context->getOutput();
500 $output->addModuleStyles( 'ext.pygments' );
501 $output->addHTML( '<div dir="ltr">' . $out . '</div>' );
502
503 // Inform MediaWiki that we have parsed this page and it shouldn't mess with it.
504 return false;
505 }
506
514 if ( !ExtensionRegistry::getInstance()->isLoaded( 'VisualEditor' ) ) {
515 return;
516 }
517
518 $resourceLoader->register( 'ext.geshi.visualEditor', [
519 'class' => ResourceLoaderSyntaxHighlightVisualEditorModule::class,
520 'localBasePath' => __DIR__ . '/../modules',
521 'remoteExtPath' => 'SyntaxHighlight_GeSHi/modules',
522 'scripts' => [
523 've-syntaxhighlight/ve.dm.MWSyntaxHighlightNode.js',
524 've-syntaxhighlight/ve.dm.MWBlockSyntaxHighlightNode.js',
525 've-syntaxhighlight/ve.dm.MWInlineSyntaxHighlightNode.js',
526 've-syntaxhighlight/ve.ce.MWSyntaxHighlightNode.js',
527 've-syntaxhighlight/ve.ce.MWBlockSyntaxHighlightNode.js',
528 've-syntaxhighlight/ve.ce.MWInlineSyntaxHighlightNode.js',
529 've-syntaxhighlight/ve.ui.MWSyntaxHighlightWindow.js',
530 've-syntaxhighlight/ve.ui.MWSyntaxHighlightDialog.js',
531 've-syntaxhighlight/ve.ui.MWSyntaxHighlightDialogTool.js',
532 've-syntaxhighlight/ve.ui.MWSyntaxHighlightInspector.js',
533 've-syntaxhighlight/ve.ui.MWSyntaxHighlightInspectorTool.js',
534 ],
535 'styles' => [
536 've-syntaxhighlight/ve.ce.MWSyntaxHighlightNode.css',
537 've-syntaxhighlight/ve.ui.MWSyntaxHighlightDialog.css',
538 've-syntaxhighlight/ve.ui.MWSyntaxHighlightInspector.css',
539 ],
540 'dependencies' => [
541 'ext.visualEditor.mwcore',
542 'oojs-ui.styles.icons-editing-advanced'
543 ],
544 'messages' => [
545 'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-code',
546 'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-language',
547 'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-none',
548 'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-showlines',
549 'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-startingline',
550 'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-title',
551 ],
552 'targets' => [ 'desktop', 'mobile' ],
553 ] );
554 }
555
560 public static function prepare( $text, $lang ) {
561 wfDeprecated( __METHOD__ );
562 return new GeSHi( self::highlight( $text, $lang )->getValue() );
563 }
564
571 public static function buildHeadItem( $geshi ) {
572 wfDeprecated( __METHOD__ );
573 $geshi->parse_code();
574 return '';
575 }
576}
577class_alias( SyntaxHighlight::class, 'SyntaxHighlight_GeSHi' );
$wgTextModelsToParse
Determines which types of text are parsed as wikitext.
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
$wgParser
Definition Setup.php:921
static parseHighlightLines( $lineSpec)
Take an input specifying a list of lines to highlight, returning a raw list of matching line numbers.
static prepare( $text, $lang)
Backward-compatibility shim for extensions.
static onContentGetParserOutput(Content $content, Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output)
Hook into Content::getParserOutput to provide syntax highlighting for script content.
static makeCacheKeyHash( $code, $lexer, $options)
Construct a cache key for the results of a Pygments invocation.
static onApiFormatHighlight(IContextSource $context, $text, $mime, $format)
Hook to provide syntax highlighting for API pretty-printed output.
static validHighlightRange( $start, $end)
Validate a provided input range.
static onResourceLoaderRegisterModules(&$resourceLoader)
Conditionally register resource loader modules that depends on the VisualEditor MediaWiki extension.
static buildHeadItem( $geshi)
Backward-compatibility shim for extensions.
if( $line===false) $args
Definition cdb.php:64
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Ge...
Definition GeSHi.php:23
MediaWiki exception.
Executes shell commands.
Definition Shell.php:44
Set options of the Parser.
PHP Parser - Processes wiki markup (which uses a more user-friendly syntax, such as "[[link]]" for ma...
Definition Parser.php:68
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition Status.php:40
static highlight( $code, $lang=null, $args=[])
Highlight a code-block using a particular lexer.
static plainCodeWrap( $code, $inline)
static onParserFirstCallInit(Parser &$parser)
Register parser hook.
static array $mimeLexers
Mapping of MIME-types to lexer names.
static getLexer( $lang)
Get the Pygments lexer name for a particular language.
static parserHook( $text, $args, $parser)
Parser hook.
Content object implementation for representing flat text.
Represents a title within MediaWiki.
Definition Title.php:39
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
Definition deferred.txt:11
see documentation in includes Linker php for Linker::makeImageLink or false for current used if you return false $parser
Definition hooks.txt:1873
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
Definition hooks.txt:2050
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
Definition hooks.txt:2885
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:895
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition hooks.txt:894
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 such as when responding to a resource loader request or generating HTML output & $resourceLoader
Definition hooks.txt:2892
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy: boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1071
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
Definition hooks.txt:2317
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 function
Definition injection.txt:30
Base interface for content objects.
Definition Content.php:34
Interface for objects which can provide a MediaWiki context on request.
$cache
Definition mcc.php:33
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))
$content
if( $ext=='php'|| $ext=='php5') $mime
Definition router.php:59
$lines
Definition router.php:61
if(!isset( $args[0])) $lang