MediaWiki REL1_33
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 ) {
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}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
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.
array $mDefaultQuery
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:71
Class that generates HTML links for pages.
Represents a page (or page fragment) title within MediaWiki.
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead & $formDescriptor
Definition hooks.txt:2157
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition hooks.txt:3069
const NS_CATEGORY
Definition Defines.php:87
Interface for objects which can provide a MediaWiki context on request.
$batch
Definition linkcache.txt:23