11 class ProtectedTitlesForm
{
13 protected $IdLevel = 'level';
14 protected $IdType = 'type';
16 function showList( $msg = '' ) {
17 global $wgOut, $wgRequest;
20 $wgOut->setSubtitle( $msg );
23 // Purge expired entries on one in every 10 queries
24 if ( !mt_rand( 0, 10 ) ) {
25 Title
::purgeExpiredRestrictions();
28 $type = $wgRequest->getVal( $this->IdType
);
29 $level = $wgRequest->getVal( $this->IdLevel
);
30 $sizetype = $wgRequest->getVal( 'sizetype' );
31 $size = $wgRequest->getIntOrNull( 'size' );
32 $NS = $wgRequest->getIntOrNull( 'namespace' );
34 $pager = new ProtectedTitlesPager( $this, array(), $type, $level, $NS, $sizetype, $size );
36 $wgOut->addHTML( $this->showOptions( $NS, $type, $level, $sizetype, $size ) );
38 if ( $pager->getNumRows() ) {
39 $s = $pager->getNavigationBar();
43 $s .= $pager->getNavigationBar();
45 $s = '<p>' . wfMsgHtml( 'protectedtitlesempty' ) . '</p>';
47 $wgOut->addHTML( $s );
51 * Callback function to output a restriction
53 function formatRow( $row ) {
54 global $wgUser, $wgLang, $wgContLang;
56 wfProfileIn( __METHOD__
);
60 if( is_null( $skin ) )
61 $skin = $wgUser->getSkin();
63 $title = Title
::makeTitleSafe( $row->pt_namespace
, $row->pt_title
);
64 $link = $skin->makeLinkObj( $title );
66 $description_items = array ();
68 $protType = wfMsgHtml( 'restriction-level-' . $row->pt_create_perm
);
70 $description_items[] = $protType;
72 $expiry_description = ''; $stxt = '';
74 if ( $row->pt_expiry
!= 'infinity' && strlen($row->pt_expiry
) ) {
75 $expiry = Block
::decodeExpiry( $row->pt_expiry
);
77 $expiry_description = wfMsg( 'protect-expiring', $wgLang->timeanddate( $expiry ) , $wgLang->date( $expiry ) , $wgLang->time( $expiry ) );
79 $description_items[] = $expiry_description;
82 wfProfileOut( __METHOD__
);
84 return '<li>' . wfSpecialList( $link . $stxt, implode( $description_items, ', ' ) ) . "</li>\n";
88 * @param $namespace int
90 * @param $level string
94 function showOptions( $namespace, $type='edit', $level, $sizetype, $size ) {
96 $action = htmlspecialchars( $wgScript );
97 $title = SpecialPage
::getTitleFor( 'ProtectedTitles' );
98 $special = htmlspecialchars( $title->getPrefixedDBkey() );
99 return "<form action=\"$action\" method=\"get\">\n" .
101 Xml
::element( 'legend', array(), wfMsg( 'protectedtitles' ) ) .
102 Xml
::hidden( 'title', $special ) . " \n" .
103 $this->getNamespaceMenu( $namespace ) . " \n" .
104 $this->getLevelMenu( $level ) . " \n" .
105 " " . Xml
::submitButton( wfMsg( 'allpagessubmit' ) ) . "\n" .
106 "</fieldset></form>";
110 * Prepare the namespace filter drop-down; standard namespace
111 * selector, sans the MediaWiki namespace
113 * @param mixed $namespace Pre-select namespace
116 function getNamespaceMenu( $namespace = null ) {
117 return Xml
::label( wfMsg( 'namespace' ), 'namespace' )
119 . Xml
::namespaceSelector( $namespace, '' );
123 * @return string Formatted HTML
126 function getLevelMenu( $pr_level ) {
127 global $wgRestrictionLevels;
129 $m = array( wfMsg('restriction-level-all') => 0 ); // Temporary array
132 // First pass to load the log names
133 foreach( $wgRestrictionLevels as $type ) {
134 if ( $type !='' && $type !='*') {
135 $text = wfMsg("restriction-level-$type");
139 // Is there only one level (aside from "all")?
140 if( count($m) <= 2 ) {
143 // Third pass generates sorted XHTML content
144 foreach( $m as $text => $type ) {
145 $selected = ($type == $pr_level );
146 $options[] = Xml
::option( $text, $type, $selected );
150 Xml
::label( wfMsg('restriction-level') , $this->IdLevel
) . ' ' .
152 array( 'id' => $this->IdLevel
, 'name' => $this->IdLevel
),
153 implode( "\n", $options ) );
161 class ProtectedtitlesPager
extends AlphabeticPager
{
162 public $mForm, $mConds;
164 function __construct( $form, $conds = array(), $type, $level, $namespace, $sizetype='', $size=0 ) {
165 $this->mForm
= $form;
166 $this->mConds
= $conds;
167 $this->level
= $level;
168 $this->namespace = $namespace;
169 $this->size
= intval($size);
170 parent
::__construct();
173 function getStartBody() {
174 wfProfileIn( __METHOD__
);
175 # Do a link batch query
176 $this->mResult
->seek( 0 );
179 while ( $row = $this->mResult
->fetchObject() ) {
180 $lb->add( $row->pt_namespace
, $row->pt_title
);
184 wfProfileOut( __METHOD__
);
188 function formatRow( $row ) {
189 return $this->mForm
->formatRow( $row );
192 function getQueryInfo() {
193 $conds = $this->mConds
;
194 $conds[] = 'pt_expiry>' . $this->mDb
->addQuotes( $this->mDb
->timestamp() );
196 $conds['pt_create_perm'] = $this->level
;
197 if( !is_null($this->namespace) )
198 $conds[] = 'pt_namespace=' . $this->mDb
->addQuotes( $this->namespace );
200 'tables' => 'protected_titles',
201 'fields' => 'pt_namespace,pt_title,pt_create_perm,pt_expiry,pt_timestamp',
206 function getIndexField() {
207 return 'pt_timestamp';
214 function wfSpecialProtectedtitles() {
216 $ppForm = new ProtectedTitlesForm();