4 * Output of the PHP parser.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
24 class ParserOutput
extends CacheTime
{
26 * @var string $mText The output text
31 * @var array $mLanguageLinks List of the full text of language links,
32 * in the order they appear.
34 public $mLanguageLinks;
37 * @var array $mCategoriesMap of category names to sort keys
42 * @var array $mIndicators Page status indicators, usually displayed in top-right corner.
44 public $mIndicators = [];
47 * @var string $mTitleText Title text of the chosen language variant, as HTML.
52 * @var array $mLinks 2-D map of NS/DBK to ID for the links in the document.
58 * @var array $mTemplates 2-D map of NS/DBK to ID for the template references.
61 public $mTemplates = [];
64 * @var array $mTemplateIds 2-D map of NS/DBK to rev ID for the template references.
67 public $mTemplateIds = [];
70 * @var array $mImages DB keys of the images used, in the array key only
75 * @var array $mFileSearchOptions DB keys of the images used mapped to sha1 and MW timestamp.
77 public $mFileSearchOptions = [];
80 * @var array $mExternalLinks External link URLs, in the key only.
82 public $mExternalLinks = [];
85 * @var array $mInterwikiLinks 2-D map of prefix/DBK (in keys only)
86 * for the inline interwiki links in the document.
88 public $mInterwikiLinks = [];
91 * @var bool $mNewSection Show a new section link?
93 public $mNewSection = false;
96 * @var bool $mHideNewSection Hide the new section link?
98 public $mHideNewSection = false;
101 * @var bool $mNoGallery No gallery on category page? (__NOGALLERY__).
103 public $mNoGallery = false;
106 * @var array $mHeadItems Items to put in the <head> section
108 public $mHeadItems = [];
111 * @var array $mModules Modules to be loaded by ResourceLoader
113 public $mModules = [];
116 * @var array $mModuleScripts Modules of which only the JS will be loaded by ResourceLoader.
118 public $mModuleScripts = [];
121 * @var array $mModuleStyles Modules of which only the CSSS will be loaded by ResourceLoader.
123 public $mModuleStyles = [];
126 * @var array $mJsConfigVars JavaScript config variable for mw.config combined with this page.
128 public $mJsConfigVars = [];
131 * @var array $mOutputHooks Hook tags as per $wgParserOutputHooks.
133 public $mOutputHooks = [];
136 * @var array $mWarnings Warning text to be returned to the user.
137 * Wikitext formatted, in the key only.
139 public $mWarnings = [];
142 * @var array $mSections Table of contents
144 public $mSections = [];
147 * @var bool $mEditSectionTokens prefix/suffix markers if edit sections were output as tokens.
149 public $mEditSectionTokens = false;
152 * @var array $mProperties Name/value pairs to be cached in the DB.
154 public $mProperties = [];
157 * @var string $mTOCHTML HTML of the TOC.
159 public $mTOCHTML = '';
162 * @var string $mTimestamp Timestamp of the revision.
167 * @var bool $mTOCEnabled Whether TOC should be shown, can't override __NOTOC__.
169 public $mTOCEnabled = true;
172 * @var bool $mEnableOOUI Whether OOUI should be enabled.
174 public $mEnableOOUI = false;
177 * @var string $mIndexPolicy 'index' or 'noindex'? Any other value will result in no change.
179 private $mIndexPolicy = '';
182 * @var array $mAccessedOptions List of ParserOptions (stored in the keys).
184 private $mAccessedOptions = [];
187 * @var array $mExtensionData extra data used by extensions.
189 private $mExtensionData = [];
192 * @var array $mLimitReportData Parser limit report data.
194 private $mLimitReportData = [];
197 * @var array $mParseStartTime Timestamps for getTimeSinceStart().
199 private $mParseStartTime = [];
202 * @var bool $mPreventClickjacking Whether to emit X-Frame-Options: DENY.
204 private $mPreventClickjacking = false;
207 * @var array $mFlags Generic flags.
209 private $mFlags = [];
211 const EDITSECTION_REGEX
=
212 '#<(?:mw:)?editsection page="(.*?)" section="(.*?)"(?:/>|>(.*?)(</(?:mw:)?editsection>))#';
214 public function __construct( $text = '', $languageLinks = [], $categoryLinks = [],
215 $unused = false, $titletext = ''
217 $this->mText
= $text;
218 $this->mLanguageLinks
= $languageLinks;
219 $this->mCategories
= $categoryLinks;
220 $this->mTitleText
= $titletext;
224 * Get the cacheable text with <mw:editsection> markers still in it. The
225 * return value is suitable for writing back via setText() but is not valid
226 * for display to the user.
230 public function getRawText() {
234 public function getText() {
235 $text = $this->mText
;
236 if ( $this->mEditSectionTokens
) {
237 $text = preg_replace_callback(
238 ParserOutput
::EDITSECTION_REGEX
,
240 global $wgOut, $wgLang;
241 $editsectionPage = Title
::newFromText( htmlspecialchars_decode( $m[1] ) );
242 $editsectionSection = htmlspecialchars_decode( $m[2] );
243 $editsectionContent = isset( $m[4] ) ?
$m[3] : null;
245 if ( !is_object( $editsectionPage ) ) {
246 throw new MWException( "Bad parser output text." );
249 $skin = $wgOut->getSkin();
250 return call_user_func_array(
251 [ $skin, 'doEditSectionLink' ],
252 [ $editsectionPage, $editsectionSection,
253 $editsectionContent, $wgLang->getCode() ]
259 $text = preg_replace( ParserOutput
::EDITSECTION_REGEX
, '', $text );
262 // If you have an old cached version of this class - sorry, you can't disable the TOC
263 if ( isset( $this->mTOCEnabled
) && $this->mTOCEnabled
) {
264 $text = str_replace( [ Parser
::TOC_START
, Parser
::TOC_END
], '', $text );
266 $text = preg_replace(
267 '#' . preg_quote( Parser
::TOC_START
, '#' ) . '.*?' . preg_quote( Parser
::TOC_END
, '#' ) . '#s',
275 public function &getLanguageLinks() {
276 return $this->mLanguageLinks
;
279 public function getInterwikiLinks() {
280 return $this->mInterwikiLinks
;
283 public function getCategoryLinks() {
284 return array_keys( $this->mCategories
);
287 public function &getCategories() {
288 return $this->mCategories
;
294 public function getIndicators() {
295 return $this->mIndicators
;
298 public function getTitleText() {
299 return $this->mTitleText
;
302 public function getSections() {
303 return $this->mSections
;
306 public function getEditSectionTokens() {
307 return $this->mEditSectionTokens
;
310 public function &getLinks() {
311 return $this->mLinks
;
314 public function &getTemplates() {
315 return $this->mTemplates
;
318 public function &getTemplateIds() {
319 return $this->mTemplateIds
;
322 public function &getImages() {
323 return $this->mImages
;
326 public function &getFileSearchOptions() {
327 return $this->mFileSearchOptions
;
330 public function &getExternalLinks() {
331 return $this->mExternalLinks
;
334 public function getNoGallery() {
335 return $this->mNoGallery
;
338 public function getHeadItems() {
339 return $this->mHeadItems
;
342 public function getModules() {
343 return $this->mModules
;
346 public function getModuleScripts() {
347 return $this->mModuleScripts
;
350 public function getModuleStyles() {
351 return $this->mModuleStyles
;
355 * @deprecated since 1.26 Obsolete
358 public function getModuleMessages() {
359 wfDeprecated( __METHOD__
, '1.26' );
364 public function getJsConfigVars() {
365 return $this->mJsConfigVars
;
368 public function getOutputHooks() {
369 return (array)$this->mOutputHooks
;
372 public function getWarnings() {
373 return array_keys( $this->mWarnings
);
376 public function getIndexPolicy() {
377 return $this->mIndexPolicy
;
380 public function getTOCHTML() {
381 return $this->mTOCHTML
;
385 * @return string|null TS_MW timestamp of the revision content
387 public function getTimestamp() {
388 return $this->mTimestamp
;
391 public function getLimitReportData() {
392 return $this->mLimitReportData
;
395 public function getTOCEnabled() {
396 return $this->mTOCEnabled
;
399 public function getEnableOOUI() {
400 return $this->mEnableOOUI
;
403 public function setText( $text ) {
404 return wfSetVar( $this->mText
, $text );
407 public function setLanguageLinks( $ll ) {
408 return wfSetVar( $this->mLanguageLinks
, $ll );
411 public function setCategoryLinks( $cl ) {
412 return wfSetVar( $this->mCategories
, $cl );
415 public function setTitleText( $t ) {
416 return wfSetVar( $this->mTitleText
, $t );
419 public function setSections( $toc ) {
420 return wfSetVar( $this->mSections
, $toc );
423 public function setEditSectionTokens( $t ) {
424 return wfSetVar( $this->mEditSectionTokens
, $t );
427 public function setIndexPolicy( $policy ) {
428 return wfSetVar( $this->mIndexPolicy
, $policy );
431 public function setTOCHTML( $tochtml ) {
432 return wfSetVar( $this->mTOCHTML
, $tochtml );
435 public function setTimestamp( $timestamp ) {
436 return wfSetVar( $this->mTimestamp
, $timestamp );
439 public function setTOCEnabled( $flag ) {
440 return wfSetVar( $this->mTOCEnabled
, $flag );
443 public function addCategory( $c, $sort ) {
444 $this->mCategories
[$c] = $sort;
450 public function setIndicator( $id, $content ) {
451 $this->mIndicators
[$id] = $content;
455 * Enables OOUI, if true, in any OutputPage instance this ParserOutput
456 * object is added to.
459 * @param bool $enable If OOUI should be enabled or not
461 public function setEnableOOUI( $enable = false ) {
462 $this->mEnableOOUI
= $enable;
465 public function addLanguageLink( $t ) {
466 $this->mLanguageLinks
[] = $t;
469 public function addWarning( $s ) {
470 $this->mWarnings
[$s] = 1;
473 public function addOutputHook( $hook, $data = false ) {
474 $this->mOutputHooks
[] = [ $hook, $data ];
477 public function setNewSection( $value ) {
478 $this->mNewSection
= (bool)$value;
480 public function hideNewSection( $value ) {
481 $this->mHideNewSection
= (bool)$value;
483 public function getHideNewSection() {
484 return (bool)$this->mHideNewSection
;
486 public function getNewSection() {
487 return (bool)$this->mNewSection
;
491 * Checks, if a url is pointing to the own server
493 * @param string $internal The server to check against
494 * @param string $url The url to check
497 public static function isLinkInternal( $internal, $url ) {
498 return (bool)preg_match( '/^' .
499 # If server is proto relative, check also for http/https links
500 ( substr( $internal, 0, 2 ) === '//' ?
'(?:https?:)?' : '' ) .
501 preg_quote( $internal, '/' ) .
502 # check for query/path/anchor or end of link in each case
508 public function addExternalLink( $url ) {
509 # We don't register links pointing to our own server, unless... :-)
510 global $wgServer, $wgRegisterInternalExternals;
512 $registerExternalLink = true;
513 if ( !$wgRegisterInternalExternals ) {
514 $registerExternalLink = !self
::isLinkInternal( $wgServer, $url );
516 if ( $registerExternalLink ) {
517 $this->mExternalLinks
[$url] = 1;
522 * Record a local or interwiki inline link for saving in future link tables.
524 * @param Title $title
525 * @param int|null $id Optional known page_id so we can skip the lookup
527 public function addLink( Title
$title, $id = null ) {
528 if ( $title->isExternal() ) {
529 // Don't record interwikis in pagelinks
530 $this->addInterwikiLink( $title );
533 $ns = $title->getNamespace();
534 $dbk = $title->getDBkey();
535 if ( $ns == NS_MEDIA
) {
536 // Normalize this pseudo-alias if it makes it down here...
538 } elseif ( $ns == NS_SPECIAL
) {
539 // We don't record Special: links currently
540 // It might actually be wise to, but we'd need to do some normalization.
542 } elseif ( $dbk === '' ) {
543 // Don't record self links - [[#Foo]]
546 if ( !isset( $this->mLinks
[$ns] ) ) {
547 $this->mLinks
[$ns] = [];
549 if ( is_null( $id ) ) {
550 $id = $title->getArticleID();
552 $this->mLinks
[$ns][$dbk] = $id;
556 * Register a file dependency for this output
557 * @param string $name Title dbKey
558 * @param string $timestamp MW timestamp of file creation (or false if non-existing)
559 * @param string $sha1 Base 36 SHA-1 of file (or false if non-existing)
562 public function addImage( $name, $timestamp = null, $sha1 = null ) {
563 $this->mImages
[$name] = 1;
564 if ( $timestamp !== null && $sha1 !== null ) {
565 $this->mFileSearchOptions
[$name] = [ 'time' => $timestamp, 'sha1' => $sha1 ];
570 * Register a template dependency for this output
571 * @param Title $title
572 * @param int $page_id
576 public function addTemplate( $title, $page_id, $rev_id ) {
577 $ns = $title->getNamespace();
578 $dbk = $title->getDBkey();
579 if ( !isset( $this->mTemplates
[$ns] ) ) {
580 $this->mTemplates
[$ns] = [];
582 $this->mTemplates
[$ns][$dbk] = $page_id;
583 if ( !isset( $this->mTemplateIds
[$ns] ) ) {
584 $this->mTemplateIds
[$ns] = [];
586 $this->mTemplateIds
[$ns][$dbk] = $rev_id; // For versioning
590 * @param Title $title Title object, must be an interwiki link
591 * @throws MWException If given invalid input
593 public function addInterwikiLink( $title ) {
594 if ( !$title->isExternal() ) {
595 throw new MWException( 'Non-interwiki link passed, internal parser error.' );
597 $prefix = $title->getInterwiki();
598 if ( !isset( $this->mInterwikiLinks
[$prefix] ) ) {
599 $this->mInterwikiLinks
[$prefix] = [];
601 $this->mInterwikiLinks
[$prefix][$title->getDBkey()] = 1;
605 * Add some text to the "<head>".
606 * If $tag is set, the section with that tag will only be included once
608 * @param string $section
609 * @param string|bool $tag
611 public function addHeadItem( $section, $tag = false ) {
612 if ( $tag !== false ) {
613 $this->mHeadItems
[$tag] = $section;
615 $this->mHeadItems
[] = $section;
619 public function addModules( $modules ) {
620 $this->mModules
= array_merge( $this->mModules
, (array)$modules );
623 public function addModuleScripts( $modules ) {
624 $this->mModuleScripts
= array_merge( $this->mModuleScripts
, (array)$modules );
627 public function addModuleStyles( $modules ) {
628 $this->mModuleStyles
= array_merge( $this->mModuleStyles
, (array)$modules );
632 * @deprecated since 1.26 Use addModules() instead
633 * @param string|array $modules
635 public function addModuleMessages( $modules ) {
636 wfDeprecated( __METHOD__
, '1.26' );
640 * Add one or more variables to be set in mw.config in JavaScript.
642 * @param string|array $keys Key or array of key/value pairs.
643 * @param mixed $value [optional] Value of the configuration variable.
646 public function addJsConfigVars( $keys, $value = null ) {
647 if ( is_array( $keys ) ) {
648 foreach ( $keys as $key => $value ) {
649 $this->mJsConfigVars
[$key] = $value;
654 $this->mJsConfigVars
[$keys] = $value;
658 * Copy items from the OutputPage object into this one
660 * @param OutputPage $out
662 public function addOutputPageMetadata( OutputPage
$out ) {
663 $this->addModules( $out->getModules() );
664 $this->addModuleScripts( $out->getModuleScripts() );
665 $this->addModuleStyles( $out->getModuleStyles() );
666 $this->addJsConfigVars( $out->getJsConfigVars() );
668 $this->mHeadItems
= array_merge( $this->mHeadItems
, $out->getHeadItemsArray() );
669 $this->mPreventClickjacking
= $this->mPreventClickjacking ||
$out->getPreventClickjacking();
673 * Add a tracking category, getting the title from a system message,
674 * or print a debug message if the title is invalid.
676 * Any message used with this function should be registered so it will
677 * show up on Special:TrackingCategories. Core messages should be added
678 * to SpecialTrackingCategories::$coreTrackingCategories, and extensions
679 * should add to "TrackingCategories" in their extension.json.
681 * @param string $msg Message key
682 * @param Title $title title of the page which is being tracked
683 * @return bool Whether the addition was successful
686 public function addTrackingCategory( $msg, $title ) {
687 if ( $title->getNamespace() === NS_SPECIAL
) {
688 wfDebug( __METHOD__
. ": Not adding tracking category $msg to special page!\n" );
692 // Important to parse with correct title (bug 31469)
693 $cat = wfMessage( $msg )
695 ->inContentLanguage()
698 # Allow tracking categories to be disabled by setting them to "-"
699 if ( $cat === '-' ) {
703 $containerCategory = Title
::makeTitleSafe( NS_CATEGORY
, $cat );
704 if ( $containerCategory ) {
705 $this->addCategory( $containerCategory->getDBkey(), $this->getProperty( 'defaultsort' ) ?
: '' );
708 wfDebug( __METHOD__
. ": [[MediaWiki:$msg]] is not a valid title!\n" );
714 * Override the title to be used for display
716 * @note this is assumed to have been validated
717 * (check equal normalisation, etc.)
719 * @note this is expected to be safe HTML,
720 * ready to be served to the client.
722 * @param string $text Desired title text
724 public function setDisplayTitle( $text ) {
725 $this->setTitleText( $text );
726 $this->setProperty( 'displaytitle', $text );
730 * Get the title to be used for display.
732 * As per the contract of setDisplayTitle(), this is safe HTML,
733 * ready to be served to the client.
735 * @return string HTML
737 public function getDisplayTitle() {
738 $t = $this->getTitleText();
746 * Fairly generic flag setter thingy.
747 * @param string $flag
749 public function setFlag( $flag ) {
750 $this->mFlags
[$flag] = true;
753 public function getFlag( $flag ) {
754 return isset( $this->mFlags
[$flag] );
758 * Set a property to be stored in the page_props database table.
760 * page_props is a key value store indexed by the page ID. This allows
761 * the parser to set a property on a page which can then be quickly
762 * retrieved given the page ID or via a DB join when given the page
765 * Since 1.23, page_props are also indexed by numeric value, to allow
766 * for efficient "top k" queries of pages wrt a given property.
768 * setProperty() is thus used to propagate properties from the parsed
769 * page to request contexts other than a page view of the currently parsed
772 * Some applications examples:
774 * * To implement hidden categories, hiding pages from category listings
775 * by storing a property.
777 * * Overriding the displayed article title.
778 * @see ParserOutput::setDisplayTitle()
780 * * To implement image tagging, for example displaying an icon on an
781 * image thumbnail to indicate that it is listed for deletion on
783 * This is not actually implemented, yet but would be pretty cool.
785 * @note Do not use setProperty() to set a property which is only used
786 * in a context where the ParserOutput object itself is already available,
787 * for example a normal page view. There is no need to save such a property
788 * in the database since the text is already parsed. You can just hook
789 * OutputPageParserOutput and get your data out of the ParserOutput object.
791 * If you are writing an extension where you want to set a property in the
792 * parser which is used by an OutputPageParserOutput hook, you have to
793 * associate the extension data directly with the ParserOutput object.
794 * Since MediaWiki 1.21, you can use setExtensionData() to do this:
798 * $parser->getOutput()->setExtensionData( 'my_ext_foo', '...' );
801 * And then later, in OutputPageParserOutput or similar:
805 * $output->getExtensionData( 'my_ext_foo' );
808 * In MediaWiki 1.20 and older, you have to use a custom member variable
809 * within the ParserOutput object:
813 * $parser->getOutput()->my_ext_foo = '...';
817 public function setProperty( $name, $value ) {
818 $this->mProperties
[$name] = $value;
822 * @param string $name The property name to look up.
824 * @return mixed|bool The value previously set using setProperty(). False if null or no value
825 * was set for the given property name.
827 * @note You need to use getProperties() to check for boolean and null properties.
829 public function getProperty( $name ) {
830 return isset( $this->mProperties
[$name] ) ?
$this->mProperties
[$name] : false;
833 public function unsetProperty( $name ) {
834 unset( $this->mProperties
[$name] );
837 public function getProperties() {
838 if ( !isset( $this->mProperties
) ) {
839 $this->mProperties
= [];
841 return $this->mProperties
;
845 * Returns the options from its ParserOptions which have been taken
846 * into account to produce this output or false if not available.
849 public function getUsedOptions() {
850 if ( !isset( $this->mAccessedOptions
) ) {
853 return array_keys( $this->mAccessedOptions
);
857 * Tags a parser option for use in the cache key for this parser output.
858 * Registered as a watcher at ParserOptions::registerWatcher() by Parser::clearState().
859 * The information gathered here is available via getUsedOptions(),
860 * and is used by ParserCache::save().
862 * @see ParserCache::getKey
863 * @see ParserCache::save
864 * @see ParserOptions::addExtraKey
865 * @see ParserOptions::optionsHash
866 * @param string $option
868 public function recordOption( $option ) {
869 $this->mAccessedOptions
[$option] = true;
873 * Attaches arbitrary data to this ParserObject. This can be used to store some information in
874 * the ParserOutput object for later use during page output. The data will be cached along with
875 * the ParserOutput object, but unlike data set using setProperty(), it is not recorded in the
878 * This method is provided to overcome the unsafe practice of attaching extra information to a
879 * ParserObject by directly assigning member variables.
881 * To use setExtensionData() to pass extension information from a hook inside the parser to a
882 * hook in the page output, use this in the parser hook:
886 * $parser->getOutput()->setExtensionData( 'my_ext_foo', '...' );
889 * And then later, in OutputPageParserOutput or similar:
893 * $output->getExtensionData( 'my_ext_foo' );
896 * In MediaWiki 1.20 and older, you have to use a custom member variable
897 * within the ParserOutput object:
901 * $parser->getOutput()->my_ext_foo = '...';
906 * @param string $key The key for accessing the data. Extensions should take care to avoid
907 * conflicts in naming keys. It is suggested to use the extension's name as a prefix.
909 * @param mixed $value The value to set. Setting a value to null is equivalent to removing
912 public function setExtensionData( $key, $value ) {
913 if ( $value === null ) {
914 unset( $this->mExtensionData
[$key] );
916 $this->mExtensionData
[$key] = $value;
921 * Gets extensions data previously attached to this ParserOutput using setExtensionData().
922 * Typically, such data would be set while parsing the page, e.g. by a parser function.
926 * @param string $key The key to look up.
928 * @return mixed|null The value previously set for the given key using setExtensionData()
929 * or null if no value was set for this key.
931 public function getExtensionData( $key ) {
932 if ( isset( $this->mExtensionData
[$key] ) ) {
933 return $this->mExtensionData
[$key];
939 private static function getTimes( $clock = null ) {
941 if ( !$clock ||
$clock === 'wall' ) {
942 $ret['wall'] = microtime( true );
944 if ( !$clock ||
$clock === 'cpu' ) {
947 $ret['cpu'] = $ru['ru_utime.tv_sec'] +
$ru['ru_utime.tv_usec'] / 1e6
;
948 $ret['cpu'] +
= $ru['ru_stime.tv_sec'] +
$ru['ru_stime.tv_usec'] / 1e6
;
955 * Resets the parse start timestamps for future calls to getTimeSinceStart()
958 public function resetParseStartTime() {
959 $this->mParseStartTime
= self
::getTimes();
963 * Returns the time since resetParseStartTime() was last called
965 * Clocks available are:
966 * - wall: Wall clock time
967 * - cpu: CPU time (requires getrusage)
970 * @param string $clock
973 public function getTimeSinceStart( $clock ) {
974 if ( !isset( $this->mParseStartTime
[$clock] ) ) {
978 $end = self
::getTimes( $clock );
979 return $end[$clock] - $this->mParseStartTime
[$clock];
983 * Sets parser limit report data for a key
985 * The key is used as the prefix for various messages used for formatting:
986 * - $key: The label for the field in the limit report
987 * - $key-value-text: Message used to format the value in the "NewPP limit
988 * report" HTML comment. If missing, uses $key-format.
989 * - $key-value-html: Message used to format the value in the preview
990 * limit report table. If missing, uses $key-format.
991 * - $key-value: Message used to format the value. If missing, uses "$1".
993 * Note that all values are interpreted as wikitext, and so should be
994 * encoded with htmlspecialchars() as necessary, but should avoid complex
995 * HTML for sanity of display in the "NewPP limit report" comment.
998 * @param string $key Message key
999 * @param mixed $value Appropriate for Message::params()
1001 public function setLimitReportData( $key, $value ) {
1002 $this->mLimitReportData
[$key] = $value;
1006 * Check whether the cache TTL was lowered due to dynamic content
1008 * When content is determined by more than hard state (e.g. page edits),
1009 * such as template/file transclusions based on the current timestamp or
1010 * extension tags that generate lists based on queries, this return true.
1015 public function hasDynamicContent() {
1016 global $wgParserCacheExpireTime;
1018 return $this->getCacheExpiry() < $wgParserCacheExpireTime;
1022 * Get or set the prevent-clickjacking flag
1025 * @param bool|null $flag New flag value, or null to leave it unchanged
1026 * @return bool Old flag value
1028 public function preventClickjacking( $flag = null ) {
1029 return wfSetVar( $this->mPreventClickjacking
, $flag );
1033 * Save space for serialization by removing useless values
1036 public function __sleep() {
1038 array_keys( get_object_vars( $this ) ),
1039 [ 'mParseStartTime' ]