MediaWiki REL1_30
ParserOutput.php
Go to the documentation of this file.
1<?php
2
24class ParserOutput extends CacheTime {
28 public $mText;
29
35
40
44 public $mIndicators = [];
45
50
55 public $mLinks = [];
56
61 public $mTemplates = [];
62
67 public $mTemplateIds = [];
68
72 public $mImages = [];
73
78
82 public $mExternalLinks = [];
83
88 public $mInterwikiLinks = [];
89
93 public $mNewSection = false;
94
98 public $mHideNewSection = false;
99
103 public $mNoGallery = false;
104
108 public $mHeadItems = [];
109
113 public $mModules = [];
114
118 public $mModuleScripts = [];
119
123 public $mModuleStyles = [];
124
128 public $mJsConfigVars = [];
129
133 public $mOutputHooks = [];
134
139 public $mWarnings = [];
140
144 public $mSections = [];
145
149 public $mEditSectionTokens = false;
150
154 public $mProperties = [];
155
159 public $mTOCHTML = '';
160
165
169 public $mTOCEnabled = true;
170
174 public $mEnableOOUI = false;
175
179 private $mIndexPolicy = '';
180
184 private $mAccessedOptions = [];
185
189 private $mExtensionData = [];
190
194 private $mLimitReportData = [];
195
198
202 private $mParseStartTime = [];
203
207 private $mPreventClickjacking = false;
208
212 private $mFlags = [];
213
216
218 private $mMaxAdaptiveExpiry = INF;
219
221 '#<(?:mw:)?editsection page="(.*?)" section="(.*?)"(?:/>|>(.*?)(</(?:mw:)?editsection>))#s';
222
223 // finalizeAdaptiveCacheExpiry() uses TTL = MAX( m * PARSE_TIME + b, MIN_AR_TTL)
224 // Current values imply that m=3933.333333 and b=-333.333333
225 // See https://www.nngroup.com/articles/website-response-times/
226 const PARSE_FAST_SEC = 0.100; // perceived "fast" page parse
227 const PARSE_SLOW_SEC = 1.0; // perceived "slow" page parse
228 const FAST_AR_TTL = 60; // adaptive TTL for "fast" pages
229 const SLOW_AR_TTL = 3600; // adaptive TTL for "slow" pages
230 const MIN_AR_TTL = 15; // min adaptive TTL (for sanity, pool counter, and edit stashing)
231
232 public function __construct( $text = '', $languageLinks = [], $categoryLinks = [],
233 $unused = false, $titletext = ''
234 ) {
235 $this->mText = $text;
236 $this->mLanguageLinks = $languageLinks;
237 $this->mCategories = $categoryLinks;
238 $this->mTitleText = $titletext;
239 }
240
249 public function getRawText() {
250 return $this->mText;
251 }
252
253 public function getText() {
254 $text = $this->mText;
255 if ( $this->mEditSectionTokens ) {
256 $text = preg_replace_callback(
257 self::EDITSECTION_REGEX,
258 function ( $m ) {
259 global $wgOut, $wgLang;
260 $editsectionPage = Title::newFromText( htmlspecialchars_decode( $m[1] ) );
261 $editsectionSection = htmlspecialchars_decode( $m[2] );
262 $editsectionContent = isset( $m[4] ) ? Sanitizer::decodeCharReferences( $m[3] ) : null;
263
264 if ( !is_object( $editsectionPage ) ) {
265 throw new MWException( "Bad parser output text." );
266 }
267
268 $skin = $wgOut->getSkin();
269 return call_user_func_array(
270 [ $skin, 'doEditSectionLink' ],
271 [ $editsectionPage, $editsectionSection,
272 $editsectionContent, $wgLang->getCode() ]
273 );
274 },
275 $text
276 );
277 } else {
278 $text = preg_replace( self::EDITSECTION_REGEX, '', $text );
279 }
280
281 // If you have an old cached version of this class - sorry, you can't disable the TOC
282 if ( isset( $this->mTOCEnabled ) && $this->mTOCEnabled ) {
283 $text = str_replace( [ Parser::TOC_START, Parser::TOC_END ], '', $text );
284 } else {
285 $text = preg_replace(
286 '#' . preg_quote( Parser::TOC_START, '#' ) . '.*?' . preg_quote( Parser::TOC_END, '#' ) . '#s',
287 '',
288 $text
289 );
290 }
291 return $text;
292 }
293
298 public function setSpeculativeRevIdUsed( $id ) {
299 $this->mSpeculativeRevId = $id;
300 }
301
306 public function getSpeculativeRevIdUsed() {
307 return $this->mSpeculativeRevId;
308 }
309
310 public function &getLanguageLinks() {
311 return $this->mLanguageLinks;
312 }
313
314 public function getInterwikiLinks() {
315 return $this->mInterwikiLinks;
316 }
317
318 public function getCategoryLinks() {
319 return array_keys( $this->mCategories );
320 }
321
322 public function &getCategories() {
323 return $this->mCategories;
324 }
325
330 public function getIndicators() {
331 return $this->mIndicators;
332 }
333
334 public function getTitleText() {
335 return $this->mTitleText;
336 }
337
338 public function getSections() {
339 return $this->mSections;
340 }
341
342 public function getEditSectionTokens() {
343 return $this->mEditSectionTokens;
344 }
345
346 public function &getLinks() {
347 return $this->mLinks;
348 }
349
350 public function &getTemplates() {
351 return $this->mTemplates;
352 }
353
354 public function &getTemplateIds() {
355 return $this->mTemplateIds;
356 }
357
358 public function &getImages() {
359 return $this->mImages;
360 }
361
362 public function &getFileSearchOptions() {
363 return $this->mFileSearchOptions;
364 }
365
366 public function &getExternalLinks() {
367 return $this->mExternalLinks;
368 }
369
370 public function getNoGallery() {
371 return $this->mNoGallery;
372 }
373
374 public function getHeadItems() {
375 return $this->mHeadItems;
376 }
377
378 public function getModules() {
379 return $this->mModules;
380 }
381
382 public function getModuleScripts() {
383 return $this->mModuleScripts;
384 }
385
386 public function getModuleStyles() {
387 return $this->mModuleStyles;
388 }
389
394 public function getJsConfigVars() {
395 return $this->mJsConfigVars;
396 }
397
398 public function getOutputHooks() {
399 return (array)$this->mOutputHooks;
400 }
401
402 public function getWarnings() {
403 return array_keys( $this->mWarnings );
404 }
405
406 public function getIndexPolicy() {
407 return $this->mIndexPolicy;
408 }
409
410 public function getTOCHTML() {
411 return $this->mTOCHTML;
412 }
413
417 public function getTimestamp() {
418 return $this->mTimestamp;
419 }
420
421 public function getLimitReportData() {
422 return $this->mLimitReportData;
423 }
424
425 public function getLimitReportJSData() {
426 return $this->mLimitReportJSData;
427 }
428
429 public function getTOCEnabled() {
430 return $this->mTOCEnabled;
431 }
432
433 public function getEnableOOUI() {
434 return $this->mEnableOOUI;
435 }
436
437 public function setText( $text ) {
438 return wfSetVar( $this->mText, $text );
439 }
440
441 public function setLanguageLinks( $ll ) {
442 return wfSetVar( $this->mLanguageLinks, $ll );
443 }
444
445 public function setCategoryLinks( $cl ) {
446 return wfSetVar( $this->mCategories, $cl );
447 }
448
449 public function setTitleText( $t ) {
450 return wfSetVar( $this->mTitleText, $t );
451 }
452
453 public function setSections( $toc ) {
454 return wfSetVar( $this->mSections, $toc );
455 }
456
457 public function setEditSectionTokens( $t ) {
458 return wfSetVar( $this->mEditSectionTokens, $t );
459 }
460
461 public function setIndexPolicy( $policy ) {
462 return wfSetVar( $this->mIndexPolicy, $policy );
463 }
464
465 public function setTOCHTML( $tochtml ) {
466 return wfSetVar( $this->mTOCHTML, $tochtml );
467 }
468
469 public function setTimestamp( $timestamp ) {
470 return wfSetVar( $this->mTimestamp, $timestamp );
471 }
472
473 public function setTOCEnabled( $flag ) {
474 return wfSetVar( $this->mTOCEnabled, $flag );
475 }
476
477 public function addCategory( $c, $sort ) {
478 $this->mCategories[$c] = $sort;
479 }
480
486 public function setIndicator( $id, $content ) {
487 $this->mIndicators[$id] = $content;
488 }
489
497 public function setEnableOOUI( $enable = false ) {
498 $this->mEnableOOUI = $enable;
499 }
500
501 public function addLanguageLink( $t ) {
502 $this->mLanguageLinks[] = $t;
503 }
504
505 public function addWarning( $s ) {
506 $this->mWarnings[$s] = 1;
507 }
508
509 public function addOutputHook( $hook, $data = false ) {
510 $this->mOutputHooks[] = [ $hook, $data ];
511 }
512
513 public function setNewSection( $value ) {
514 $this->mNewSection = (bool)$value;
515 }
516 public function hideNewSection( $value ) {
517 $this->mHideNewSection = (bool)$value;
518 }
519 public function getHideNewSection() {
520 return (bool)$this->mHideNewSection;
521 }
522 public function getNewSection() {
523 return (bool)$this->mNewSection;
524 }
525
533 public static function isLinkInternal( $internal, $url ) {
534 return (bool)preg_match( '/^' .
535 # If server is proto relative, check also for http/https links
536 ( substr( $internal, 0, 2 ) === '//' ? '(?:https?:)?' : '' ) .
537 preg_quote( $internal, '/' ) .
538 # check for query/path/anchor or end of link in each case
539 '(?:[\?\/\#]|$)/i',
540 $url
541 );
542 }
543
544 public function addExternalLink( $url ) {
545 # We don't register links pointing to our own server, unless... :-)
547
548 # Replace unnecessary URL escape codes with the referenced character
549 # This prevents spammers from hiding links from the filters
550 $url = parser::normalizeLinkUrl( $url );
551
552 $registerExternalLink = true;
554 $registerExternalLink = !self::isLinkInternal( $wgServer, $url );
555 }
556 if ( $registerExternalLink ) {
557 $this->mExternalLinks[$url] = 1;
558 }
559 }
560
567 public function addLink( Title $title, $id = null ) {
568 if ( $title->isExternal() ) {
569 // Don't record interwikis in pagelinks
570 $this->addInterwikiLink( $title );
571 return;
572 }
573 $ns = $title->getNamespace();
574 $dbk = $title->getDBkey();
575 if ( $ns == NS_MEDIA ) {
576 // Normalize this pseudo-alias if it makes it down here...
577 $ns = NS_FILE;
578 } elseif ( $ns == NS_SPECIAL ) {
579 // We don't record Special: links currently
580 // It might actually be wise to, but we'd need to do some normalization.
581 return;
582 } elseif ( $dbk === '' ) {
583 // Don't record self links - [[#Foo]]
584 return;
585 }
586 if ( !isset( $this->mLinks[$ns] ) ) {
587 $this->mLinks[$ns] = [];
588 }
589 if ( is_null( $id ) ) {
590 $id = $title->getArticleID();
591 }
592 $this->mLinks[$ns][$dbk] = $id;
593 }
594
602 public function addImage( $name, $timestamp = null, $sha1 = null ) {
603 $this->mImages[$name] = 1;
604 if ( $timestamp !== null && $sha1 !== null ) {
605 $this->mFileSearchOptions[$name] = [ 'time' => $timestamp, 'sha1' => $sha1 ];
606 }
607 }
608
616 public function addTemplate( $title, $page_id, $rev_id ) {
617 $ns = $title->getNamespace();
618 $dbk = $title->getDBkey();
619 if ( !isset( $this->mTemplates[$ns] ) ) {
620 $this->mTemplates[$ns] = [];
621 }
622 $this->mTemplates[$ns][$dbk] = $page_id;
623 if ( !isset( $this->mTemplateIds[$ns] ) ) {
624 $this->mTemplateIds[$ns] = [];
625 }
626 $this->mTemplateIds[$ns][$dbk] = $rev_id; // For versioning
627 }
628
633 public function addInterwikiLink( $title ) {
634 if ( !$title->isExternal() ) {
635 throw new MWException( 'Non-interwiki link passed, internal parser error.' );
636 }
637 $prefix = $title->getInterwiki();
638 if ( !isset( $this->mInterwikiLinks[$prefix] ) ) {
639 $this->mInterwikiLinks[$prefix] = [];
640 }
641 $this->mInterwikiLinks[$prefix][$title->getDBkey()] = 1;
642 }
643
651 public function addHeadItem( $section, $tag = false ) {
652 if ( $tag !== false ) {
653 $this->mHeadItems[$tag] = $section;
654 } else {
655 $this->mHeadItems[] = $section;
656 }
657 }
658
659 public function addModules( $modules ) {
660 $this->mModules = array_merge( $this->mModules, (array)$modules );
661 }
662
663 public function addModuleScripts( $modules ) {
664 $this->mModuleScripts = array_merge( $this->mModuleScripts, (array)$modules );
665 }
666
667 public function addModuleStyles( $modules ) {
668 $this->mModuleStyles = array_merge( $this->mModuleStyles, (array)$modules );
669 }
670
678 public function addJsConfigVars( $keys, $value = null ) {
679 if ( is_array( $keys ) ) {
680 foreach ( $keys as $key => $value ) {
681 $this->mJsConfigVars[$key] = $value;
682 }
683 return;
684 }
685
686 $this->mJsConfigVars[$keys] = $value;
687 }
688
695 $this->addModules( $out->getModules() );
696 $this->addModuleScripts( $out->getModuleScripts() );
697 $this->addModuleStyles( $out->getModuleStyles() );
698 $this->addJsConfigVars( $out->getJsConfigVars() );
699
700 $this->mHeadItems = array_merge( $this->mHeadItems, $out->getHeadItemsArray() );
701 $this->mPreventClickjacking = $this->mPreventClickjacking || $out->getPreventClickjacking();
702 }
703
720 public function addTrackingCategory( $msg, $title ) {
721 if ( $title->isSpecialPage() ) {
722 wfDebug( __METHOD__ . ": Not adding tracking category $msg to special page!\n" );
723 return false;
724 }
725
726 // Important to parse with correct title (T33469)
727 $cat = wfMessage( $msg )
728 ->title( $title )
729 ->inContentLanguage()
730 ->text();
731
732 # Allow tracking categories to be disabled by setting them to "-"
733 if ( $cat === '-' ) {
734 return false;
735 }
736
737 $containerCategory = Title::makeTitleSafe( NS_CATEGORY, $cat );
738 if ( $containerCategory ) {
739 $this->addCategory( $containerCategory->getDBkey(), $this->getProperty( 'defaultsort' ) ?: '' );
740 return true;
741 } else {
742 wfDebug( __METHOD__ . ": [[MediaWiki:$msg]] is not a valid title!\n" );
743 return false;
744 }
745 }
746
758 public function setDisplayTitle( $text ) {
759 $this->setTitleText( $text );
760 $this->setProperty( 'displaytitle', $text );
761 }
762
771 public function getDisplayTitle() {
772 $t = $this->getTitleText();
773 if ( $t === '' ) {
774 return false;
775 }
776 return $t;
777 }
778
783 public function setFlag( $flag ) {
784 $this->mFlags[$flag] = true;
785 }
786
787 public function getFlag( $flag ) {
788 return isset( $this->mFlags[$flag] );
789 }
790
852 public function setProperty( $name, $value ) {
853 $this->mProperties[$name] = $value;
854 }
855
864 public function getProperty( $name ) {
865 return isset( $this->mProperties[$name] ) ? $this->mProperties[$name] : false;
866 }
867
868 public function unsetProperty( $name ) {
869 unset( $this->mProperties[$name] );
870 }
871
872 public function getProperties() {
873 if ( !isset( $this->mProperties ) ) {
874 $this->mProperties = [];
875 }
876 return $this->mProperties;
877 }
878
884 public function getUsedOptions() {
885 if ( !isset( $this->mAccessedOptions ) ) {
886 return [];
887 }
888 return array_keys( $this->mAccessedOptions );
889 }
890
903 public function recordOption( $option ) {
904 $this->mAccessedOptions[$option] = true;
905 }
906
947 public function setExtensionData( $key, $value ) {
948 if ( $value === null ) {
949 unset( $this->mExtensionData[$key] );
950 } else {
951 $this->mExtensionData[$key] = $value;
952 }
953 }
954
966 public function getExtensionData( $key ) {
967 if ( isset( $this->mExtensionData[$key] ) ) {
968 return $this->mExtensionData[$key];
969 }
970
971 return null;
972 }
973
974 private static function getTimes( $clock = null ) {
975 $ret = [];
976 if ( !$clock || $clock === 'wall' ) {
977 $ret['wall'] = microtime( true );
978 }
979 if ( !$clock || $clock === 'cpu' ) {
980 $ru = wfGetRusage();
981 if ( $ru ) {
982 $ret['cpu'] = $ru['ru_utime.tv_sec'] + $ru['ru_utime.tv_usec'] / 1e6;
983 $ret['cpu'] += $ru['ru_stime.tv_sec'] + $ru['ru_stime.tv_usec'] / 1e6;
984 }
985 }
986 return $ret;
987 }
988
993 public function resetParseStartTime() {
994 $this->mParseStartTime = self::getTimes();
995 }
996
1008 public function getTimeSinceStart( $clock ) {
1009 if ( !isset( $this->mParseStartTime[$clock] ) ) {
1010 return null;
1011 }
1012
1013 $end = self::getTimes( $clock );
1014 return $end[$clock] - $this->mParseStartTime[$clock];
1015 }
1016
1036 public function setLimitReportData( $key, $value ) {
1037 $this->mLimitReportData[$key] = $value;
1038
1039 if ( is_array( $value ) ) {
1040 if ( array_keys( $value ) === [ 0, 1 ]
1041 && is_numeric( $value[0] )
1042 && is_numeric( $value[1] )
1043 ) {
1044 $data = [ 'value' => $value[0], 'limit' => $value[1] ];
1045 } else {
1046 $data = $value;
1047 }
1048 } else {
1049 $data = $value;
1050 }
1051
1052 if ( strpos( $key, '-' ) ) {
1053 list( $ns, $name ) = explode( '-', $key, 2 );
1054 $this->mLimitReportJSData[$ns][$name] = $data;
1055 } else {
1056 $this->mLimitReportJSData[$key] = $data;
1057 }
1058 }
1059
1070 public function hasDynamicContent() {
1072
1073 return $this->getCacheExpiry() < $wgParserCacheExpireTime;
1074 }
1075
1083 public function preventClickjacking( $flag = null ) {
1084 return wfSetVar( $this->mPreventClickjacking, $flag );
1085 }
1086
1093 public function updateRuntimeAdaptiveExpiry( $ttl ) {
1094 $this->mMaxAdaptiveExpiry = min( $ttl, $this->mMaxAdaptiveExpiry );
1095 $this->updateCacheExpiry( $ttl );
1096 }
1097
1104 if ( is_infinite( $this->mMaxAdaptiveExpiry ) ) {
1105 return; // not set
1106 }
1107
1108 $runtime = $this->getTimeSinceStart( 'wall' );
1109 if ( is_float( $runtime ) ) {
1110 $slope = ( self::SLOW_AR_TTL - self::FAST_AR_TTL )
1111 / ( self::PARSE_SLOW_SEC - self::PARSE_FAST_SEC );
1112 // SLOW_AR_TTL = PARSE_SLOW_SEC * $slope + $point
1113 $point = self::SLOW_AR_TTL - self::PARSE_SLOW_SEC * $slope;
1114
1115 $adaptiveTTL = min(
1116 max( $slope * $runtime + $point, self::MIN_AR_TTL ),
1117 $this->mMaxAdaptiveExpiry
1118 );
1119 $this->updateCacheExpiry( $adaptiveTTL );
1120 }
1121 }
1122
1123 public function __sleep() {
1124 return array_diff(
1125 array_keys( get_object_vars( $this ) ),
1126 [ 'mParseStartTime' ]
1127 );
1128 }
1129}
Apache License January http
$wgRegisterInternalExternals
By default MediaWiki does not register links pointing to same server in externallinks dataset,...
$wgParserCacheExpireTime
The expiry time for the parser cache, in seconds.
$wgServer
URL of the server.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfSetVar(&$dest, $source, $force=false)
Sets dest to source and returns the original value of dest If source is NULL, it just returns the val...
wfGetRusage()
Get system resource usage of current request context.
$wgOut
Definition Setup.php:827
Parser cache specific expiry check.
Definition CacheTime.php:29
updateCacheExpiry( $seconds)
Sets the number of seconds after which this object should expire.
Definition CacheTime.php:93
getCacheExpiry()
Returns the number of seconds after which this object should expire.
MediaWiki exception.
This class should be covered by a general architecture document which does not exist as of January 20...
addOutputPageMetadata(OutputPage $out)
Copy items from the OutputPage object into this one.
getProperty( $name)
unsetProperty( $name)
static getTimes( $clock=null)
hideNewSection( $value)
int null $mSpeculativeRevId
Assumed rev ID for {{REVISIONID}} if no revision is set.
setNewSection( $value)
addOutputHook( $hook, $data=false)
setDisplayTitle( $text)
Override the title to be used for display.
addJsConfigVars( $keys, $value=null)
Add one or more variables to be set in mw.config in JavaScript.
setIndicator( $id, $content)
addExternalLink( $url)
addModuleScripts( $modules)
setLanguageLinks( $ll)
setCategoryLinks( $cl)
addInterwikiLink( $title)
setEditSectionTokens( $t)
setEnableOOUI( $enable=false)
Enables OOUI, if true, in any OutputPage instance this ParserOutput object is added to.
getDisplayTitle()
Get the title to be used for display.
addTrackingCategory( $msg, $title)
Add a tracking category, getting the title from a system message, or print a debug message if the tit...
finalizeAdaptiveCacheExpiry()
Call this when parsing is done to lower the TTL based on low parse times.
addTemplate( $title, $page_id, $rev_id)
Register a template dependency for this output.
addLink(Title $title, $id=null)
Record a local or interwiki inline link for saving in future link tables.
addModules( $modules)
resetParseStartTime()
Resets the parse start timestamps for future calls to getTimeSinceStart()
preventClickjacking( $flag=null)
Get or set the prevent-clickjacking flag.
setProperty( $name, $value)
Set a property to be stored in the page_props database table.
recordOption( $option)
Tags a parser option for use in the cache key for this parser output.
addHeadItem( $section, $tag=false)
Add some text to the "<head>".
hasDynamicContent()
Check whether the cache TTL was lowered due to dynamic content.
getExtensionData( $key)
Gets extensions data previously attached to this ParserOutput using setExtensionData().
getTimeSinceStart( $clock)
Returns the time since resetParseStartTime() was last called.
getRawText()
Get the cacheable text with <mw:editsection> markers still in it.
addImage( $name, $timestamp=null, $sha1=null)
Register a file dependency for this output.
updateRuntimeAdaptiveExpiry( $ttl)
Lower the runtime adaptive TTL to at most this value.
setTOCHTML( $tochtml)
getUsedOptions()
Returns the options from its ParserOptions which have been taken into account to produce this output ...
setLimitReportData( $key, $value)
Sets parser limit report data for a key.
setExtensionData( $key, $value)
Attaches arbitrary data to this ParserObject.
setTimestamp( $timestamp)
setSpeculativeRevIdUsed( $id)
__construct( $text='', $languageLinks=[], $categoryLinks=[], $unused=false, $titletext='')
static isLinkInternal( $internal, $url)
Checks, if a url is pointing to the own server.
array $mLimitReportJSData
Parser limit report data for JSON.
setTOCEnabled( $flag)
addModuleStyles( $modules)
setFlag( $flag)
Fairly generic flag setter thingy.
const EDITSECTION_REGEX
addCategory( $c, $sort)
setIndexPolicy( $policy)
int $mMaxAdaptiveExpiry
Upper bound of expiry based on parse duration.
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
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
Definition design.txt:56
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
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 noclasses & $ret
Definition hooks.txt:1975
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:862
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
in this case you re responsible for computing and outputting the entire conflict i the difference between revisions and your text headers and sections and Diff or overridable Default is either copyrightwarning or copyrightwarning2 overridable Default is editpage tos summary such as anonymity and the real check
Definition hooks.txt:1471
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
Definition hooks.txt:2990
const NS_FILE
Definition Defines.php:71
const NS_SPECIAL
Definition Defines.php:54
const NS_MEDIA
Definition Defines.php:53
const NS_CATEGORY
Definition Defines.php:79
$sort
This document describes the XML format used to represent information about external sites known to a MediaWiki installation This information about external sites is used to allow inter wiki links
in the order they appear.
Definition sitelist.txt:3