3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
21 use MediaWiki\Linker\LinkRenderer
;
26 class CategoryPager
extends AlphabeticPager
{
31 protected $linkRenderer;
34 * @param IContextSource $context
36 * @param LinkRenderer $linkRenderer
38 public function __construct( IContextSource
$context, $from, LinkRenderer
$linkRenderer
40 parent
::__construct( $context );
41 $from = str_replace( ' ', '_', $from );
43 $from = Title
::capitalize( $from, NS_CATEGORY
);
44 $this->setOffset( $from );
45 $this->setIncludeOffset( true );
48 $this->linkRenderer
= $linkRenderer;
51 function getQueryInfo() {
53 'tables' => [ 'category' ],
54 'fields' => [ 'cat_title', 'cat_pages' ],
55 'conds' => [ 'cat_pages > 0' ],
56 'options' => [ 'USE INDEX' => 'cat_title' ],
60 function getIndexField() {
64 function getDefaultQuery() {
65 parent
::getDefaultQuery();
66 unset( $this->mDefaultQuery
['from'] );
68 return $this->mDefaultQuery
;
71 /* Override getBody to apply LinksBatch on resultset before actually outputting anything. */
72 public function getBody() {
73 $batch = new LinkBatch
;
75 $this->mResult
->rewind();
77 foreach ( $this->mResult
as $row ) {
78 $batch->addObj( new TitleValue( NS_CATEGORY
, $row->cat_title
) );
81 $this->mResult
->rewind();
83 return parent
::getBody();
86 function formatRow( $result ) {
87 $title = new TitleValue( NS_CATEGORY
, $result->cat_title
);
88 $text = $title->getText();
89 $link = $this->linkRenderer
->makeLink( $title, $text );
91 $count = $this->msg( 'nmembers' )->numParams( $result->cat_pages
)->escaped();
92 return Html
::rawElement( 'li', null, $this->getLanguage()->specialList( $link, $count ) ) . "\n";
95 public function getStartForm( $from ) {
98 [ 'method' => 'get', 'action' => wfScript() ],
99 Html
::hidden( 'title', $this->getTitle()->getPrefixedText() ) .
101 $this->msg( 'categories' )->text(),
103 $this->msg( 'categoriesfrom' )->text(),
104 'from', 'from', 20, $from, [ 'class' => 'mw-ui-input-inline' ] ) .
107 $this->msg( 'categories-submit' )->text(),
108 [], [ 'mw-ui-progressive' ]