mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RelatedArticles
synced 2024-11-24 00:05:50 +00:00
extension.json: Simplify hook calls as we only ever use one
Change-Id: Ie835cac5df0697829dcf6f1796d9c4331512a8fc
This commit is contained in:
parent
ac94e7efad
commit
bf6ca72845
|
@ -22,24 +22,12 @@
|
||||||
"RelatedArticlesMagic": "RelatedArticles.i18n.magic.php"
|
"RelatedArticlesMagic": "RelatedArticles.i18n.magic.php"
|
||||||
},
|
},
|
||||||
"Hooks": {
|
"Hooks": {
|
||||||
"ParserFirstCallInit": [
|
"ParserFirstCallInit": "RelatedArticles\\Hooks::onParserFirstCallInit",
|
||||||
"RelatedArticles\\Hooks::onParserFirstCallInit"
|
"OutputPageParserOutput": "RelatedArticles\\Hooks::onOutputPageParserOutput",
|
||||||
],
|
"MakeGlobalVariablesScript": "RelatedArticles\\Hooks::onMakeGlobalVariablesScript",
|
||||||
"OutputPageParserOutput": [
|
"BeforePageDisplay": "RelatedArticles\\Hooks::onBeforePageDisplay",
|
||||||
"RelatedArticles\\Hooks::onOutputPageParserOutput"
|
"ResourceLoaderGetConfigVars": "RelatedArticles\\Hooks::onResourceLoaderGetConfigVars",
|
||||||
],
|
"SkinAfterContent": "RelatedArticles\\Hooks::onSkinAfterContent"
|
||||||
"MakeGlobalVariablesScript": [
|
|
||||||
"RelatedArticles\\Hooks::onMakeGlobalVariablesScript"
|
|
||||||
],
|
|
||||||
"BeforePageDisplay": [
|
|
||||||
"RelatedArticles\\Hooks::onBeforePageDisplay"
|
|
||||||
],
|
|
||||||
"ResourceLoaderGetConfigVars": [
|
|
||||||
"RelatedArticles\\Hooks::onResourceLoaderGetConfigVars"
|
|
||||||
],
|
|
||||||
"SkinAfterContent": [
|
|
||||||
"RelatedArticles\\Hooks::onSkinAfterContent"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"MessagesDirs": {
|
"MessagesDirs": {
|
||||||
"RelatedArticles": [
|
"RelatedArticles": [
|
||||||
|
|
Loading…
Reference in a new issue