MediaWiki REL1_39
SpecialMostRevisions.php
Go to the documentation of this file.
1<?php
30
32
39 public function __construct(
40 NamespaceInfo $namespaceInfo,
41 ILoadBalancer $loadBalancer,
42 LinkBatchFactory $linkBatchFactory,
43 LanguageConverterFactory $languageConverterFactory
44 ) {
45 parent::__construct(
46 $namespaceInfo,
47 $loadBalancer,
48 $linkBatchFactory,
49 $languageConverterFactory
50 );
51 $this->mName = 'Mostrevisions';
52 }
53
54 protected function sortDescending() {
55 return true;
56 }
57
58 protected function getGroupName() {
59 return 'highuse';
60 }
61}
An interface for creating language converters.
This is a utility class for dealing with namespaces that encodes all the "magic" behaviors of them ba...
Special page for listing the articles with the fewest revisions.
__construct(NamespaceInfo $namespaceInfo, ILoadBalancer $loadBalancer, LinkBatchFactory $linkBatchFactory, LanguageConverterFactory $languageConverterFactory)
sortDescending()
Override to sort by increasing values.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Create and track the database connections and transactions for a given database cluster.