mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Gadgets
synced 2024-11-27 16:50:00 +00:00
Add wgQueryPages hook for Special:GadgetUsage page
Change-Id: Ifacd705886f923e3ee58d4cd004d50c8ec4002d8
This commit is contained in:
parent
e009534e5c
commit
e03ff36127
|
@ -223,4 +223,14 @@ class GadgetHooks {
|
|||
$files = array_merge( $files, glob( "$testDir/*Test.php" ) );
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the GadgetUsage special page to the list of QueryPages.
|
||||
* @param array &$queryPages
|
||||
* @return bool
|
||||
*/
|
||||
public static function onwgQueryPages( &$queryPages ) {
|
||||
$queryPages[] = array( 'SpecialGadgetUsage', 'GadgetUsage' );
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -83,6 +83,9 @@
|
|||
],
|
||||
"UnitTestsList": [
|
||||
"GadgetHooks::onUnitTestsList"
|
||||
],
|
||||
"wgQueryPages": [
|
||||
"GadgetHooks::onwgQueryPages"
|
||||
]
|
||||
},
|
||||
"manifest_version": 1
|
||||
|
|
Loading…
Reference in a new issue