MediaWiki master
SpecialUncategorizedTemplates.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki\Specials;
22
27
35
42 public function __construct(
43 NamespaceInfo $namespaceInfo,
44 IConnectionProvider $dbProvider,
45 LinkBatchFactory $linkBatchFactory,
46 LanguageConverterFactory $languageConverterFactory
47 ) {
48 parent::__construct(
49 $namespaceInfo,
50 $dbProvider,
51 $linkBatchFactory,
52 $languageConverterFactory
53 );
54 $this->mName = 'Uncategorizedtemplates';
55 $this->requestedNamespace = NS_TEMPLATE;
56 }
57}
58
63class_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.