MediaWiki  master
SpecialUncategorizedTemplates.php
Go to the documentation of this file.
1 <?php
25 namespace MediaWiki\Specials;
26 
31 
39 
46  public function __construct(
47  NamespaceInfo $namespaceInfo,
48  IConnectionProvider $dbProvider,
49  LinkBatchFactory $linkBatchFactory,
50  LanguageConverterFactory $languageConverterFactory
51  ) {
52  parent::__construct(
53  $namespaceInfo,
54  $dbProvider,
55  $linkBatchFactory,
56  $languageConverterFactory
57  );
58  $this->mName = 'Uncategorizedtemplates';
59  $this->requestedNamespace = NS_TEMPLATE;
60  }
61 }
62 
67 class_alias( SpecialUncategorizedTemplates::class, 'SpecialUncategorizedTemplates' );
const NS_TEMPLATE
Definition: Defines.php:74
An interface for creating language converters.
A special page looking for page without any category.
Special page lists 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.