MediaWiki master
SpecialUncategorizedTemplates.php
Go to the documentation of this file.
1<?php
7namespace MediaWiki\Specials;
8
9use MediaWiki\Cache\LinkBatchFactory;
10use MediaWiki\Languages\LanguageConverterFactory;
13
21
22 public function __construct(
23 NamespaceInfo $namespaceInfo,
24 IConnectionProvider $dbProvider,
25 LinkBatchFactory $linkBatchFactory,
26 LanguageConverterFactory $languageConverterFactory
27 ) {
28 parent::__construct(
29 $namespaceInfo,
30 $dbProvider,
31 $linkBatchFactory,
32 $languageConverterFactory
33 );
34 $this->mName = 'Uncategorizedtemplates';
35 $this->requestedNamespace = NS_TEMPLATE;
36 }
37}
38
43class_alias( SpecialUncategorizedTemplates::class, 'SpecialUncategorizedTemplates' );
const NS_TEMPLATE
Definition Defines.php:61
List of all uncategorised pages in the Template namespace.
__construct(NamespaceInfo $namespaceInfo, IConnectionProvider $dbProvider, LinkBatchFactory $linkBatchFactory, LanguageConverterFactory $languageConverterFactory)
This is a utility class for dealing with namespaces that encodes all the "magic" behaviors of them ba...
Provide primary and replica IDatabase connections.