MediaWiki REL1_31
SpecialProtectedtitles.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( 'Protectedtitles' );
35 }
36
37 function execute( $par ) {
38 $this->setHeaders();
39 $this->outputHeader();
40
41 $request = $this->getRequest();
42 $type = $request->getVal( $this->IdType );
43 $level = $request->getVal( $this->IdLevel );
44 $sizetype = $request->getVal( 'sizetype' );
45 $size = $request->getIntOrNull( 'size' );
46 $NS = $request->getIntOrNull( 'namespace' );
47
48 $pager = new ProtectedTitlesPager( $this, [], $type, $level, $NS, $sizetype, $size );
49
50 $this->getOutput()->addHTML( $this->showOptions( $NS, $type, $level ) );
51
52 if ( $pager->getNumRows() ) {
53 $this->getOutput()->addHTML(
54 $pager->getNavigationBar() .
55 '<ul>' . $pager->getBody() . '</ul>' .
56 $pager->getNavigationBar()
57 );
58 } else {
59 $this->getOutput()->addWikiMsg( 'protectedtitlesempty' );
60 }
61 }
62
69 function formatRow( $row ) {
70 $title = Title::makeTitleSafe( $row->pt_namespace, $row->pt_title );
71 if ( !$title ) {
72 return Html::rawElement(
73 'li',
74 [],
75 Html::element(
76 'span',
77 [ 'class' => 'mw-invalidtitle' ],
79 $this->getContext(),
80 $row->pt_namespace,
81 $row->pt_title
82 )
83 )
84 ) . "\n";
85 }
86
87 $link = $this->getLinkRenderer()->makeLink( $title );
88 // Messages: restriction-level-sysop, restriction-level-autoconfirmed
89 $description = $this->msg( 'restriction-level-' . $row->pt_create_perm )->escaped();
90 $lang = $this->getLanguage();
91 $expiry = strlen( $row->pt_expiry ) ?
92 $lang->formatExpiry( $row->pt_expiry, TS_MW ) :
93 'infinity';
94
95 if ( $expiry !== 'infinity' ) {
96 $user = $this->getUser();
97 $description .= $this->msg( 'comma-separator' )->escaped() . $this->msg(
98 'protect-expiring-local',
99 $lang->userTimeAndDate( $expiry, $user ),
100 $lang->userDate( $expiry, $user ),
101 $lang->userTime( $expiry, $user )
102 )->escaped();
103 }
104
105 return '<li>' . $lang->specialList( $link, $description ) . "</li>\n";
106 }
107
115 function showOptions( $namespace, $type = 'edit', $level ) {
116 $formDescriptor = [
117 'namespace' => [
118 'class' => 'HTMLSelectNamespace',
119 'name' => 'namespace',
120 'id' => 'namespace',
121 'cssclass' => 'namespaceselector',
122 'all' => '',
123 'label' => $this->msg( 'namespace' )->text()
124 ],
125 'levelmenu' => $this->getLevelMenu( $level )
126 ];
127
128 $htmlForm = new HTMLForm( $formDescriptor, $this->getContext() );
129 $htmlForm
130 ->setMethod( 'get' )
131 ->setWrapperLegendMsg( 'protectedtitles' )
132 ->setSubmitText( $this->msg( 'protectedtitles-submit' )->text() );
133
134 return $htmlForm->prepareForm()->getHTML( false );
135 }
136
142 function getLevelMenu( $pr_level ) {
143 // Temporary array
144 $m = [ $this->msg( 'restriction-level-all' )->text() => 0 ];
145 $options = [];
146
147 // First pass to load the log names
148 foreach ( $this->getConfig()->get( 'RestrictionLevels' ) as $type ) {
149 if ( $type != '' && $type != '*' ) {
150 // Messages: restriction-level-sysop, restriction-level-autoconfirmed
151 $text = $this->msg( "restriction-level-$type" )->text();
152 $m[$text] = $type;
153 }
154 }
155
156 // Is there only one level (aside from "all")?
157 if ( count( $m ) <= 2 ) {
158 return '';
159 }
160 // Third pass generates sorted XHTML content
161 foreach ( $m as $text => $type ) {
162 $options[ $text ] = $type;
163 }
164
165 return [
166 'type' => 'select',
167 'options' => $options,
168 'label' => $this->msg( 'restriction-level' )->text(),
169 'name' => $this->IdLevel,
170 'id' => $this->IdLevel
171 ];
172 }
173
174 protected function getGroupName() {
175 return 'maintenance';
176 }
177}
Object handling generic submission, CSRF protection, layout and other logic for UI forms.
Definition HTMLForm.php:130
static getInvalidTitleDescription(IContextSource $context, $namespace, $title)
Get a message saying that an invalid title was encountered.
Definition Linker.php:209
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.
getUser()
Shortcut to get the User executing 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.
getLanguage()
Shortcut to get user's language.
A special page that list protected titles from creation.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
formatRow( $row)
Callback function to output a restriction.
execute( $par)
Default execute method Checks user permissions.
showOptions( $namespace, $type='edit', $level)
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
Definition design.txt:18
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:2806
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:2001
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition hooks.txt:3021
if(!isset( $args[0])) $lang