X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Fspecialpage%2FQueryPage.php;h=b20f22214bfaebb26acd84e2258484a555416f93;hp=33b9ccb12d22c3ba2a033fdf8f7ef33fe4623e4b;hb=689c847a32e7fe8a0b3a559a88a627a252c5018e;hpb=9bf44d08f938cc9a85dc647b8a00665d5bd01fb6 diff --git a/includes/specialpage/QueryPage.php b/includes/specialpage/QueryPage.php index 33b9ccb12d..b20f22214b 100644 --- a/includes/specialpage/QueryPage.php +++ b/includes/specialpage/QueryPage.php @@ -69,40 +69,40 @@ abstract class QueryPage extends SpecialPage { if ( $qp === null ) { // QueryPage subclass, Special page name $qp = [ - [ 'AncientPagesPage', 'Ancientpages' ], - [ 'BrokenRedirectsPage', 'BrokenRedirects' ], - [ 'DeadendPagesPage', 'Deadendpages' ], - [ 'DoubleRedirectsPage', 'DoubleRedirects' ], - [ 'FileDuplicateSearchPage', 'FileDuplicateSearch' ], - [ 'ListDuplicatedFilesPage', 'ListDuplicatedFiles' ], - [ 'LinkSearchPage', 'LinkSearch' ], - [ 'ListredirectsPage', 'Listredirects' ], - [ 'LonelyPagesPage', 'Lonelypages' ], - [ 'LongPagesPage', 'Longpages' ], - [ 'MediaStatisticsPage', 'MediaStatistics' ], - [ 'MIMEsearchPage', 'MIMEsearch' ], - [ 'MostcategoriesPage', 'Mostcategories' ], - [ 'MostimagesPage', 'Mostimages' ], - [ 'MostinterwikisPage', 'Mostinterwikis' ], - [ 'MostlinkedCategoriesPage', 'Mostlinkedcategories' ], - [ 'MostlinkedTemplatesPage', 'Mostlinkedtemplates' ], - [ 'MostlinkedPage', 'Mostlinked' ], - [ 'MostrevisionsPage', 'Mostrevisions' ], - [ 'FewestrevisionsPage', 'Fewestrevisions' ], - [ 'ShortPagesPage', 'Shortpages' ], - [ 'UncategorizedCategoriesPage', 'Uncategorizedcategories' ], - [ 'UncategorizedPagesPage', 'Uncategorizedpages' ], - [ 'UncategorizedImagesPage', 'Uncategorizedimages' ], - [ 'UncategorizedTemplatesPage', 'Uncategorizedtemplates' ], - [ 'UnusedCategoriesPage', 'Unusedcategories' ], - [ 'UnusedimagesPage', 'Unusedimages' ], - [ 'WantedCategoriesPage', 'Wantedcategories' ], - [ 'WantedFilesPage', 'Wantedfiles' ], - [ 'WantedPagesPage', 'Wantedpages' ], - [ 'WantedTemplatesPage', 'Wantedtemplates' ], - [ 'UnwatchedpagesPage', 'Unwatchedpages' ], - [ 'UnusedtemplatesPage', 'Unusedtemplates' ], - [ 'WithoutInterwikiPage', 'Withoutinterwiki' ], + [ AncientPagesPage::class, 'Ancientpages' ], + [ BrokenRedirectsPage::class, 'BrokenRedirects' ], + [ DeadendPagesPage::class, 'Deadendpages' ], + [ DoubleRedirectsPage::class, 'DoubleRedirects' ], + [ FileDuplicateSearchPage::class, 'FileDuplicateSearch' ], + [ ListDuplicatedFilesPage::class, 'ListDuplicatedFiles' ], + [ LinkSearchPage::class, 'LinkSearch' ], + [ ListredirectsPage::class, 'Listredirects' ], + [ LonelyPagesPage::class, 'Lonelypages' ], + [ LongPagesPage::class, 'Longpages' ], + [ MediaStatisticsPage::class, 'MediaStatistics' ], + [ MIMEsearchPage::class, 'MIMEsearch' ], + [ MostcategoriesPage::class, 'Mostcategories' ], + [ MostimagesPage::class, 'Mostimages' ], + [ MostinterwikisPage::class, 'Mostinterwikis' ], + [ MostlinkedCategoriesPage::class, 'Mostlinkedcategories' ], + [ MostlinkedTemplatesPage::class, 'Mostlinkedtemplates' ], + [ MostlinkedPage::class, 'Mostlinked' ], + [ MostrevisionsPage::class, 'Mostrevisions' ], + [ FewestrevisionsPage::class, 'Fewestrevisions' ], + [ ShortPagesPage::class, 'Shortpages' ], + [ UncategorizedCategoriesPage::class, 'Uncategorizedcategories' ], + [ UncategorizedPagesPage::class, 'Uncategorizedpages' ], + [ UncategorizedImagesPage::class, 'Uncategorizedimages' ], + [ UncategorizedTemplatesPage::class, 'Uncategorizedtemplates' ], + [ UnusedCategoriesPage::class, 'Unusedcategories' ], + [ UnusedimagesPage::class, 'Unusedimages' ], + [ WantedCategoriesPage::class, 'Wantedcategories' ], + [ WantedFilesPage::class, 'Wantedfiles' ], + [ WantedPagesPage::class, 'Wantedpages' ], + [ WantedTemplatesPage::class, 'Wantedtemplates' ], + [ UnwatchedpagesPage::class, 'Unwatchedpages' ], + [ UnusedtemplatesPage::class, 'Unusedtemplates' ], + [ WithoutInterwikiPage::class, 'Withoutinterwiki' ], ]; Hooks::run( 'wgQueryPages', [ &$qp ] ); }