MediaWiki master
SpecialUncategorizedTemplates.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki\Specials;
22
27
35
36 public function __construct(
37 NamespaceInfo $namespaceInfo,
38 IConnectionProvider $dbProvider,
39 LinkBatchFactory $linkBatchFactory,
40 LanguageConverterFactory $languageConverterFactory
41 ) {
42 parent::__construct(
43 $namespaceInfo,
44 $dbProvider,
45 $linkBatchFactory,
46 $languageConverterFactory
47 );
48 $this->mName = 'Uncategorizedtemplates';
49 $this->requestedNamespace = NS_TEMPLATE;
50 }
51}
52
57class_alias( SpecialUncategorizedTemplates::class, 'SpecialUncategorizedTemplates' );
const NS_TEMPLATE
Definition Defines.php:75
An interface for creating language converters.
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.