Go to the documentation of this file.
43 parent::__construct(
'Prefixindex' );
57 $out->addModuleStyles(
'mediawiki.special' );
61 $from =
$request->getVal(
'from',
'' );
62 $prefix =
$request->getVal(
'prefix',
'' );
63 $ns =
$request->getIntOrNull(
'namespace' );
64 $namespace = (int)$ns;
65 $this->hideRedirects =
$request->getBool(
'hideredirects', $this->hideRedirects );
66 $this->stripPrefix =
$request->getBool(
'stripprefix', $this->stripPrefix );
70 ( $namespace > 0 && array_key_exists( $namespace,
$namespaces ) )
71 ? $this->
msg(
'prefixindex-namespace', str_replace(
'_',
' ',
$namespaces[$namespace] ) )
72 : $this->
msg(
'prefixindex' )
76 if ( $par !==
null ) {
78 } elseif ( $prefix !=
'' ) {
80 } elseif ( $from !=
'' && $ns ===
null ) {
87 if ( $this->
including() || $showme !=
'' || $ns !==
null ) {
104 [
'method' =>
'get',
'action' => $this->
getConfig()->
get(
'Script' ) ]
111 <td class='mw-label'>" .
114 <td class='mw-input'>" .
115 Xml::input(
'prefix', 30, str_replace(
'_',
' ', $from ), [
'id' =>
'nsfrom' ] ) .
119 <td class='mw-label'>" .
122 <td class='mw-input'>" .
124 'selected' => $namespace,
126 'name' =>
'namespace',
128 'class' =>
'namespaceselector',
131 $this->
msg(
'allpages-hide-redirects' )->
text(),
137 $this->
msg(
'prefixindex-strip' )->
text(),
161 if ( $from ===
null ) {
172 if ( !$prefixList || !$fromList ) {
173 $out = $this->
msg(
'allpagesbadtitle' )->parseAsBlock();
174 } elseif ( !array_key_exists( $namespace,
$namespaces ) ) {
176 $out = $this->
msg(
'allpages-bad-ns', $namespace )->parse();
179 list( $namespace, $prefixKey, $prefix ) = $prefixList;
180 list( , $fromKey, ) = $fromList;
182 # ## @todo FIXME: Should complain if $fromNs != $namespace
187 'page_namespace' => $namespace,
188 'page_title' .
$dbr->buildLike( $prefixKey,
$dbr->anyString() ),
189 'page_title >= ' .
$dbr->addQuotes( $fromKey ),
192 if ( $this->hideRedirects ) {
193 $conds[
'page_is_redirect'] = 0;
198 [
'page_namespace',
'page_title' ],
204 'ORDER BY' =>
'page_title',
205 'LIMIT' => $this->maxPerPage + 1,
206 'USE INDEX' =>
'name_title',
212 if (
$res->numRows() > 0 ) {
214 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
216 $prefixLength = strlen( $prefix );
217 foreach (
$res as $row ) {
218 if ( $n >= $this->maxPerPage ) {
224 $linkCache->addGoodLinkObjFromRow(
$title, $row );
225 $displayed =
$title->getText();
227 if ( $this->stripPrefix && $prefixLength !== strlen( $displayed ) ) {
228 $displayed = substr( $displayed, $prefixLength );
230 $link = (
$title->isRedirect() ?
'<div class="allpagesredirect">' :
'' ) .
235 (
$title->isRedirect() ?
'</div>' :
'' );
237 $out .=
"<li>$link</li>\n";
243 if (
$res->numRows() > 2 ) {
264 if (
$res && ( $n == $this->maxPerPage ) && $nextRow ) {
266 'from' => $nextRow->page_title,
272 if ( $namespace || $prefix ==
'' ) {
275 $query[
'namespace'] = $namespace;
280 $this->
msg(
'nextpage', str_replace(
'_',
' ', $nextRow->page_title ) )->text(),
287 [
'class' =>
'mw-prefixindex-nav' ],
295 [
'class' =>
'mw-prefixindex-nav' ],
getPageTitle( $subpage=false)
Get a self-referential title object.
msg( $key)
Wrapper around wfMessage that sets the current context.
getOutput()
Get the OutputPage being used for this instance.
static label( $label, $id, $attribs=[])
Convenience function to build an HTML form label.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
namespace and then decline to actually register it & $namespaces
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
showPrefixChunk( $namespace=NS_MAIN, $prefix, $from=null)
execute( $par)
Entry point : initialise variables and call subfunctions.
static openElement( $element, $attribs=null)
This opens an XML element.
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place $output
static getSelectFields()
Fields that LinkCache needs to select.
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
static closeElement( $element)
Returns "</$element>".
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
prefixSearchString( $search, $limit, $offset)
Perform a regular substring search for prefixSearchSubpages.
getConfig()
Shortcut to get main config object.
namespace and then decline to actually register it file or subcat img or subcat $title
static newFromRow( $row)
Make a Title object from a DB row.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
$stripPrefix
Whether to remove the searched prefix from the displayed link.
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
when a variable name is used in a it is silently declared as a new masking the global
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
static hidden( $name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
namespacePrefixForm( $namespace=NS_MAIN, $from='')
HTML for the top form.
static namespaceSelector(array $params=[], array $selectAttribs=[])
Build a drop-down box for selecting a namespace.
getNamespaceKeyAndText( $ns, $text)
getRequest()
Get the WebRequest being used for this instance.
static closeElement( $element)
Shortcut to close an XML element.
Implements Special:Allpages.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static openElement( $element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
usually copyright or history_copyright This message must be in HTML not wikitext & $link
prefixSearchSubpages( $search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
static input( $name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field.
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
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 MediaWikiServices
Implements Special:Prefixindex.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
including( $x=null)
Whether the special page is being evaluated via transclusion.
static submitButton( $value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
static checkLabel( $label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out