MediaWiki REL1_31
CategoryPager.php
Go to the documentation of this file.
1<?php
22
27
31 protected $linkRenderer;
32
39 ) {
40 parent::__construct( $context );
41 $from = str_replace( ' ', '_', $from );
42 if ( $from !== '' ) {
43 $from = Title::capitalize( $from, NS_CATEGORY );
44 $this->setOffset( $from );
45 $this->setIncludeOffset( true );
46 }
47
48 $this->linkRenderer = $linkRenderer;
49 }
50
51 function getQueryInfo() {
52 return [
53 'tables' => [ 'category' ],
54 'fields' => [ 'cat_title', 'cat_pages' ],
55 'options' => [ 'USE INDEX' => 'cat_title' ],
56 ];
57 }
58
59 function getIndexField() {
60 return 'cat_title';
61 }
62
63 function getDefaultQuery() {
64 parent::getDefaultQuery();
65 unset( $this->mDefaultQuery['from'] );
66
68 }
69
70 /* Override getBody to apply LinksBatch on resultset before actually outputting anything. */
71 public function getBody() {
72 $batch = new LinkBatch;
73
74 $this->mResult->rewind();
75
76 foreach ( $this->mResult as $row ) {
77 $batch->addObj( new TitleValue( NS_CATEGORY, $row->cat_title ) );
78 }
79 $batch->execute();
80 $this->mResult->rewind();
81
82 return parent::getBody();
83 }
84
85 function formatRow( $result ) {
86 $title = new TitleValue( NS_CATEGORY, $result->cat_title );
87 $text = $title->getText();
88 $link = $this->linkRenderer->makeLink( $title, $text );
89
90 $count = $this->msg( 'nmembers' )->numParams( $result->cat_pages )->escaped();
91 return Html::rawElement( 'li', null, $this->getLanguage()->specialList( $link, $count ) ) . "\n";
92 }
93
94 public function getStartForm( $from ) {
95 $formDescriptor = [
96 'from' => [
97 'type' => 'title',
98 'namespace' => NS_CATEGORY,
99 'relative' => true,
100 'label-message' => 'categoriesfrom',
101 'name' => 'from',
102 'id' => 'from',
103 'size' => 20,
104 'default' => $from,
105 ],
106 ];
107
108 $htmlForm = HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() )
109 ->setSubmitTextMsg( 'categories-submit' )
110 ->setWrapperLegendMsg( 'categories' )
111 ->setMethod( 'get' );
112 return $htmlForm->prepareForm()->getHTML( false );
113 }
114
115}
IndexPager with an alphabetic list and a formatted navigation bar.
getDefaultQuery()
Get an array of query parameters that should be put into self-links.
getBody()
Get the formatted result list.
getIndexField()
This function should be overridden to return the name of the index fi- eld.
getQueryInfo()
This function should be overridden to provide all parameters needed for the main paged query.
__construct(IContextSource $context, $from, LinkRenderer $linkRenderer)
formatRow( $result)
Abstract formatting function.
LinkRenderer $linkRenderer
getStartForm( $from)
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
IContextSource $context
getContext()
Get the base IContextSource object.
setOffset( $offset)
Set the offset from an other source than the request.
setIncludeOffset( $include)
Set whether a row matching exactly the offset should be also included in the result or not.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition LinkBatch.php:34
addObj( $linkTarget)
Definition LinkBatch.php:68
Class that generates HTML links for pages.
Represents a page (or page fragment) title within MediaWiki.
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition hooks.txt:3021
const NS_CATEGORY
Definition Defines.php:88
Interface for objects which can provide a MediaWiki context on request.
$batch
Definition linkcache.txt:23