X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fparser%2FParserOutput.php;h=f80e6bf5d209c7616a3f15170fa2ad96cedc7a2b;hb=c54cdc67eea31159d101e29de9f723f975589c0f;hp=6260de6bc080635dcd874c7a457b3b04698c9a6a;hpb=e3cfa25e71fab040a5ecf7784493b0ecd11579aa;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/parser/ParserOutput.php b/includes/parser/ParserOutput.php index 6260de6bc0..f80e6bf5d2 100644 --- a/includes/parser/ParserOutput.php +++ b/includes/parser/ParserOutput.php @@ -120,11 +120,6 @@ class ParserOutput extends CacheTime { */ public $mModules = []; - /** - * @var array $mModuleScripts Modules of which only the JS will be loaded by ResourceLoader. - */ - public $mModuleScripts = []; - /** * @var array $mModuleStyles Modules of which only the CSSS will be loaded by ResourceLoader. */ @@ -476,14 +471,6 @@ class ParserOutput extends CacheTime { return $this->mSections; } - /** - * @deprecated since 1.31 Use getText() options. - */ - public function getEditSectionTokens() { - wfDeprecated( __METHOD__, '1.31' ); - return true; - } - public function &getLinks() { return $this->mLinks; } @@ -524,7 +511,8 @@ class ParserOutput extends CacheTime { } public function getModuleScripts() { - return $this->mModuleScripts; + wfDeprecated( __METHOD__, '1.33' ); + return []; } public function getModuleStyles() { @@ -570,14 +558,6 @@ class ParserOutput extends CacheTime { return $this->mLimitReportJSData; } - /** - * @deprecated since 1.31 Use getText() options. - */ - public function getTOCEnabled() { - wfDeprecated( __METHOD__, '1.31' ); - return true; - } - public function getEnableOOUI() { return $this->mEnableOOUI; } @@ -602,14 +582,6 @@ class ParserOutput extends CacheTime { return wfSetVar( $this->mSections, $toc ); } - /** - * @deprecated since 1.31 Use getText() options. - */ - public function setEditSectionTokens( $t ) { - wfDeprecated( __METHOD__, '1.31' ); - return true; - } - public function setIndexPolicy( $policy ) { return wfSetVar( $this->mIndexPolicy, $policy ); } @@ -622,14 +594,6 @@ class ParserOutput extends CacheTime { return wfSetVar( $this->mTimestamp, $timestamp ); } - /** - * @deprecated since 1.31 Use getText() options. - */ - public function setTOCEnabled( $flag ) { - wfDeprecated( __METHOD__, '1.31' ); - return true; - } - public function addCategory( $c, $sort ) { $this->mCategories[$c] = $sort; } @@ -817,14 +781,6 @@ class ParserOutput extends CacheTime { $this->mModules = array_merge( $this->mModules, (array)$modules ); } - /** - * @deprecated since 1.31 Use addModules() instead. - * @see OutputPage::addModuleScripts - */ - public function addModuleScripts( $modules ) { - $this->mModuleScripts = array_merge( $this->mModuleScripts, (array)$modules ); - } - /** * @see OutputPage::addModuleStyles */ @@ -857,7 +813,6 @@ class ParserOutput extends CacheTime { */ public function addOutputPageMetadata( OutputPage $out ) { $this->addModules( $out->getModules() ); - $this->addModuleScripts( $out->getModuleScripts() ); $this->addModuleStyles( $out->getModuleStyles() ); $this->addJsConfigVars( $out->getJsConfigVars() ); @@ -1338,7 +1293,6 @@ class ParserOutput extends CacheTime { // HTML and HTTP $this->mHeadItems = self::mergeMixedList( $this->mHeadItems, $source->getHeadItems() ); $this->mModules = self::mergeList( $this->mModules, $source->getModules() ); - $this->mModuleScripts = self::mergeList( $this->mModuleScripts, $source->getModuleScripts() ); $this->mModuleStyles = self::mergeList( $this->mModuleStyles, $source->getModuleStyles() ); $this->mJsConfigVars = self::mergeMap( $this->mJsConfigVars, $source->getJsConfigVars() ); $this->mMaxAdaptiveExpiry = min( $this->mMaxAdaptiveExpiry, $source->mMaxAdaptiveExpiry ); @@ -1359,7 +1313,7 @@ class ParserOutput extends CacheTime { // TODO: we'll have to be smarter about this! $this->mSections = array_merge( $this->mSections, $source->getSections() ); - $this->mTOCHTML = $this->mTOCHTML . $source->mTOCHTML; + $this->mTOCHTML .= $source->mTOCHTML; // XXX: we don't want to concatenate title text, so first write wins. // We should use the first *modified* title text, but we don't have the original to check.