MediaWiki REL1_31
SpecialLonelypages.php
Go to the documentation of this file.
1<?php
31 function __construct( $name = 'Lonelypages' ) {
32 parent::__construct( $name );
33 }
34
35 function getPageHeader() {
36 return $this->msg( 'lonelypagestext' )->parseAsBlock();
37 }
38
39 function sortDescending() {
40 return false;
41 }
42
43 function isExpensive() {
44 return true;
45 }
46
47 function isSyndicated() {
48 return false;
49 }
50
51 function getQueryInfo() {
52 $tables = [ 'page', 'pagelinks', 'templatelinks' ];
53 $conds = [
54 'pl_namespace IS NULL',
55 'page_namespace' => MWNamespace::getContentNamespaces(),
56 'page_is_redirect' => 0,
57 'tl_namespace IS NULL'
58 ];
59 $joinConds = [
60 'pagelinks' => [
61 'LEFT JOIN', [
62 'pl_namespace = page_namespace',
63 'pl_title = page_title'
64 ]
65 ],
66 'templatelinks' => [
67 'LEFT JOIN', [
68 'tl_namespace = page_namespace',
69 'tl_title = page_title'
70 ]
71 ]
72 ];
73
74 // Allow extensions to modify the query
75 Hooks::run( 'LonelyPagesQuery', [ &$tables, &$conds, &$joinConds ] );
76
77 return [
78 'tables' => $tables,
79 'fields' => [
80 'namespace' => 'page_namespace',
81 'title' => 'page_title',
82 ],
83 'conds' => $conds,
84 'join_conds' => $joinConds
85 ];
86 }
87
88 function getOrderFields() {
89 // For some crazy reason ordering by a constant
90 // causes a filesort in MySQL 5
91 if ( count( MWNamespace::getContentNamespaces() ) > 1 ) {
92 return [ 'page_namespace', 'page_title' ];
93 } else {
94 return [ 'page_title' ];
95 }
96 }
97
98 protected function getGroupName() {
99 return 'maintenance';
100 }
101}
A special page looking for articles with no article linking to them, thus being lonely.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
getOrderFields()
Subclasses return an array of fields to order by here.
isSyndicated()
Sometime we don't want to build rss / atom feeds.
isExpensive()
Is this query expensive (for some definition of expensive)? Then we don't let it run in miser mode.
__construct( $name='Lonelypages')
getQueryInfo()
Subclasses return an SQL query here, formatted as an array with the following keys: tables => Table(s...
getPageHeader()
The content returned by this function will be output before any result.
sortDescending()
Override to sort by increasing values.
Variant of QueryPage which formats the result as a simple link to the page.
msg( $key)
Wrapper around wfMessage that sets the current context.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
Definition hooks.txt:1015
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37