MediaWiki REL1_33
SpecialProtectedpages.php
Go to the documentation of this file.
1<?php
30 protected $IdLevel = 'level';
31 protected $IdType = 'type';
32
33 public function __construct() {
34 parent::__construct( 'Protectedpages' );
35 }
36
37 public function execute( $par ) {
38 $this->setHeaders();
39 $this->outputHeader();
40 $this->getOutput()->addModuleStyles( 'mediawiki.special' );
41
42 $request = $this->getRequest();
43 $type = $request->getVal( $this->IdType );
44 $level = $request->getVal( $this->IdLevel );
45 $sizetype = $request->getVal( 'size-mode' );
46 $size = $request->getIntOrNull( 'size' );
47 $ns = $request->getIntOrNull( 'namespace' );
48
49 $filters = $request->getArray( 'wpfilters', [] );
50 $indefOnly = in_array( 'indefonly', $filters );
51 $cascadeOnly = in_array( 'cascadeonly', $filters );
52 $noRedirect = in_array( 'noredirect', $filters );
53
54 $pager = new ProtectedPagesPager(
55 $this,
56 [],
57 $type,
58 $level,
59 $ns,
60 $sizetype,
61 $size,
62 $indefOnly,
63 $cascadeOnly,
64 $noRedirect,
65 $this->getLinkRenderer()
66 );
67
68 $this->getOutput()->addHTML( $this->showOptions(
69 $ns,
70 $type,
71 $level,
72 $sizetype,
73 $size,
74 $filters
75 ) );
76
77 if ( $pager->getNumRows() ) {
78 $this->getOutput()->addParserOutputContent( $pager->getFullOutput() );
79 } else {
80 $this->getOutput()->addWikiMsg( 'protectedpagesempty' );
81 }
82 }
83
94 protected function showOptions( $namespace, $type, $level, $sizetype,
95 $size, $filters
96 ) {
98 'namespace' => [
99 'class' => HTMLSelectNamespace::class,
100 'name' => 'namespace',
101 'id' => 'namespace',
102 'cssclass' => 'namespaceselector',
103 'all' => '',
104 'label' => $this->msg( 'namespace' )->text(),
105 ],
106 'typemenu' => $this->getTypeMenu( $type ),
107 'levelmenu' => $this->getLevelMenu( $level ),
108 'filters' => [
109 'class' => 'HTMLMultiSelectField',
110 'label' => $this->msg( 'protectedpages-filters' )->text(),
111 'flatlist' => true,
112 'options-messages' => [
113 'protectedpages-indef' => 'indefonly',
114 'protectedpages-cascade' => 'cascadeonly',
115 'protectedpages-noredirect' => 'noredirect',
116 ],
117 'default' => $filters,
118 ],
119 'sizelimit' => [
120 'class' => HTMLSizeFilterField::class,
121 'name' => 'size',
122 ]
123 ];
124 $htmlForm = HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() );
125 $htmlForm
126 ->setMethod( 'get' )
127 ->setWrapperLegendMsg( 'protectedpages' )
128 ->setSubmitText( $this->msg( 'protectedpages-submit' )->text() );
129
130 return $htmlForm->prepareForm()->getHTML( false );
131 }
132
138 protected function getTypeMenu( $pr_type ) {
139 $m = []; // Temporary array
140 $options = [];
141
142 // First pass to load the log names
143 foreach ( Title::getFilteredRestrictionTypes( true ) as $type ) {
144 // Messages: restriction-edit, restriction-move, restriction-create, restriction-upload
145 $text = $this->msg( "restriction-$type" )->text();
146 $m[$text] = $type;
147 }
148
149 // Third pass generates sorted XHTML content
150 foreach ( $m as $text => $type ) {
151 $options[$text] = $type;
152 }
153
154 return [
155 'type' => 'select',
156 'options' => $options,
157 'label' => $this->msg( 'restriction-type' )->text(),
158 'name' => $this->IdType,
159 'id' => $this->IdType,
160 ];
161 }
162
168 protected function getLevelMenu( $pr_level ) {
169 // Temporary array
170 $m = [ $this->msg( 'restriction-level-all' )->text() => 0 ];
171 $options = [];
172
173 // First pass to load the log names
174 foreach ( $this->getConfig()->get( 'RestrictionLevels' ) as $type ) {
175 // Messages used can be 'restriction-level-sysop' and 'restriction-level-autoconfirmed'
176 if ( $type != '' && $type != '*' ) {
177 $text = $this->msg( "restriction-level-$type" )->text();
178 $m[$text] = $type;
179 }
180 }
181
182 // Third pass generates sorted XHTML content
183 foreach ( $m as $text => $type ) {
184 $options[$text] = $type;
185 }
186
187 return [
188 'type' => 'select',
189 'options' => $options,
190 'label' => $this->msg( 'restriction-level' )->text(),
191 'name' => $this->IdLevel,
192 'id' => $this->IdLevel
193 ];
194 }
195
196 protected function getGroupName() {
197 return 'maintenance';
198 }
199}
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
Parent class for all special pages.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getContext()
Gets the context this SpecialPage is executed in.
msg( $key)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getRequest()
Get the WebRequest being used for this instance.
A special page that lists protected pages.
showOptions( $namespace, $type, $level, $sizetype, $size, $filters)
getLevelMenu( $pr_level)
Creates the input label of the restriction level.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
getTypeMenu( $pr_type)
Creates the input label of the restriction type.
execute( $par)
Default execute method Checks user permissions.
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
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
Definition hooks.txt:2843
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead & $formDescriptor
Definition hooks.txt:2157
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:1999
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