Go to the documentation of this file.
33 parent::__construct(
'AutoblockList' );
46 $out->setPageTitle( $this->
msg(
'autoblocklist' ) );
48 $out->addModuleStyles( [
'mediawiki.special' ] );
50 # setup BlockListPager here to get the actual default Limit
53 # Just show the block list
56 'type' =>
'limitselect',
57 'label-message' =>
'table_pager_limit_label',
59 $lang->formatNum( 20 ) => 20,
60 $lang->formatNum( 50 ) => 50,
61 $lang->formatNum( 100 ) => 100,
62 $lang->formatNum( 250 ) => 250,
63 $lang->formatNum( 500 ) => 500,
66 'default' => $pager->getLimit(),
73 $form->setMethod(
'get' )
74 ->setFormIdentifier(
'blocklist' )
75 ->setWrapperLegendMsg(
'autoblocklist-legend' )
76 ->setSubmitTextMsg(
'autoblocklist-submit' )
77 ->setSubmitProgressive()
79 ->displayForm(
false );
91 'ipb_parent_block_id IS NOT NULL'
93 # Is the user allowed to see hidden blocks?
94 if ( !$this->
getUser()->isAllowed(
'hideuser' ) ) {
95 $conds[
'ipb_deleted'] = 0;
122 # Check for other blocks, i.e. global/tor blocks
123 $otherAutoblockLink = [];
124 Hooks::run(
'OtherAutoblockLogLink', [ &$otherAutoblockLink ] );
126 # Show additional header for the local block only when other blocks exists.
127 # Not necessary in a standard installation without such extensions enabled
128 if (
count( $otherAutoblockLink ) ) {
139 $out->addWikiMsg(
'autoblocklist-empty' );
142 if (
count( $otherAutoblockLink ) ) {
147 $this->
msg(
'autoblocklist-otherblocks',
count( $otherAutoblockLink ) )->parse()
151 foreach ( $otherAutoblockLink
as $link ) {
157 [
'class' =>
'mw-autoblocklist-otherblocks' ],
getPageTitle( $subpage=false)
Get a self-referential title object.
msg( $key)
Wrapper around wfMessage that sets the current context.
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 and they can depend only on the ResourceLoaderContext $context
getOutput()
Get the OutputPage being used for this instance.
if(!isset( $args[0])) $lang
A special page that lists autoblocks.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
getLanguage()
Shortcut to get user's language.
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
An IContextSource implementation which will inherit context from another source but allow individual ...
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getUser()
Shortcut to get the User executing this instance.
showTotal(BlockListPager $pager)
Show total number of autoblocks on top of the table.
getContext()
Gets the context this SpecialPage is executed in.
Parent class for all special pages.
showList(BlockListPager $pager)
Show the list of blocked accounts matching the actual filter.
execute( $par)
Main execution point.
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 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
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
getBlockListPager()
Setup a new BlockListPager instance.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
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