3 * Implements Special:Protectedtitles
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
25 * A special page that list protected titles from creation
27 * @ingroup SpecialPage
29 class SpecialProtectedtitles
extends SpecialPage
{
30 protected $IdLevel = 'level';
31 protected $IdType = 'type';
33 public function __construct() {
34 parent
::__construct( 'Protectedtitles' );
37 function execute( $par ) {
39 $this->outputHeader();
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' );
48 $pager = new ProtectedTitlesPager( $this, [], $type, $level, $NS, $sizetype, $size );
50 $this->getOutput()->addHTML( $this->showOptions( $NS, $type, $level ) );
52 if ( $pager->getNumRows() ) {
53 $this->getOutput()->addHTML(
54 $pager->getNavigationBar() .
55 '<ul>' . $pager->getBody() . '</ul>' .
56 $pager->getNavigationBar()
59 $this->getOutput()->addWikiMsg( 'protectedtitlesempty' );
64 * Callback function to output a restriction
66 * @param object $row Database row
69 function formatRow( $row ) {
70 $title = Title
::makeTitleSafe( $row->pt_namespace
, $row->pt_title
);
72 return Html
::rawElement(
77 [ 'class' => 'mw-invalidtitle' ],
78 Linker
::getInvalidTitleDescription(
87 $link = $this->getLinkRenderer()->makeLink( $title );
88 $description_items = [];
89 // Messages: restriction-level-sysop, restriction-level-autoconfirmed
90 $protType = $this->msg( 'restriction-level-' . $row->pt_create_perm
)->escaped();
91 $description_items[] = $protType;
92 $lang = $this->getLanguage();
93 $expiry = strlen( $row->pt_expiry
) ?
94 $lang->formatExpiry( $row->pt_expiry
, TS_MW
) :
97 if ( $expiry !== 'infinity' ) {
98 $user = $this->getUser();
99 $description_items[] = $this->msg(
100 'protect-expiring-local',
101 $lang->userTimeAndDate( $expiry, $user ),
102 $lang->userDate( $expiry, $user ),
103 $lang->userTime( $expiry, $user )
107 // @todo i18n: This should use a comma separator instead of a hard coded comma, right?
108 return '<li>' . $lang->specialList( $link, implode( $description_items, ', ' ) ) . "</li>\n";
112 * @param int $namespace
113 * @param string $type
114 * @param string $level
118 function showOptions( $namespace, $type = 'edit', $level ) {
119 $action = htmlspecialchars( wfScript() );
120 $title = $this->getPageTitle();
121 $special = htmlspecialchars( $title->getPrefixedDBkey() );
123 return "<form action=\"$action\" method=\"get\">\n" .
125 Xml
::element( 'legend', [], $this->msg( 'protectedtitles' )->text() ) .
126 Html
::hidden( 'title', $special ) . " \n" .
127 $this->getNamespaceMenu( $namespace ) . " \n" .
128 $this->getLevelMenu( $level ) . " \n" .
129 " " . Xml
::submitButton( $this->msg( 'protectedtitles-submit' )->text() ) . "\n" .
130 "</fieldset></form>";
134 * Prepare the namespace filter drop-down; standard namespace
135 * selector, sans the MediaWiki namespace
137 * @param string|null $namespace Pre-select namespace
140 function getNamespaceMenu( $namespace = null ) {
141 return Html
::namespaceSelector(
143 'selected' => $namespace,
145 'label' => $this->msg( 'namespace' )->text()
147 'name' => 'namespace',
149 'class' => 'namespaceselector',
155 * @param string $pr_level Determines which option is selected as default
156 * @return string Formatted HTML
159 function getLevelMenu( $pr_level ) {
161 $m = [ $this->msg( 'restriction-level-all' )->text() => 0 ];
164 // First pass to load the log names
165 foreach ( $this->getConfig()->get( 'RestrictionLevels' ) as $type ) {
166 if ( $type != '' && $type != '*' ) {
167 // Messages: restriction-level-sysop, restriction-level-autoconfirmed
168 $text = $this->msg( "restriction-level-$type" )->text();
173 // Is there only one level (aside from "all")?
174 if ( count( $m ) <= 2 ) {
177 // Third pass generates sorted XHTML content
178 foreach ( $m as $text => $type ) {
179 $selected = ( $type == $pr_level );
180 $options[] = Xml
::option( $text, $type, $selected );
183 return Xml
::label( $this->msg( 'restriction-level' )->text(), $this->IdLevel
) . ' ' .
185 [ 'id' => $this->IdLevel
, 'name' => $this->IdLevel
],
186 implode( "\n", $options ) );
189 protected function getGroupName() {
190 return 'maintenance';