3 * Efficient paging for SQL queries.
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
25 * @defgroup Pager Pager
29 * Basic pager interface.
33 function getNavigationBar();
38 * IndexPager is an efficient pager which uses a (roughly unique) index in the
39 * data set to implement paging, rather than a "LIMIT offset,limit" clause.
40 * In MySQL, such a limit/offset clause requires counting through the
41 * specified number of offset rows to find the desired data, which can be
42 * expensive for large offsets.
44 * ReverseChronologicalPager is a child class of the abstract IndexPager, and
45 * contains some formatting and display code which is specific to the use of
46 * timestamps as indexes. Here is a synopsis of its operation:
48 * * The query is specified by the offset, limit and direction (dir)
49 * parameters, in addition to any subclass-specific parameters.
50 * * The offset is the non-inclusive start of the DB query. A row with an
51 * index value equal to the offset will never be shown.
52 * * The query may either be done backwards, where the rows are returned by
53 * the database in the opposite order to which they are displayed to the
54 * user, or forwards. This is specified by the "dir" parameter, dir=prev
55 * means backwards, anything else means forwards. The offset value
56 * specifies the start of the database result set, which may be either
57 * the start or end of the displayed data set. This allows "previous"
58 * links to be implemented without knowledge of the index value at the
59 * start of the previous page.
60 * * An additional row beyond the user-specified limit is always requested.
61 * This allows us to tell whether we should display a "next" link in the
62 * case of forwards mode, or a "previous" link in the case of backwards
63 * mode. Determining whether to display the other link (the one for the
64 * page before the start of the database result set) can be done
65 * heuristically by examining the offset.
67 * * An empty offset indicates that the offset condition should be omitted
68 * from the query. This naturally produces either the first page or the
69 * last page depending on the dir parameter.
71 * Subclassing the pager to implement concrete functionality should be fairly
72 * simple, please see the examples in HistoryPage.php and
73 * SpecialBlockList.php. You just need to override formatRow(),
74 * getQueryInfo() and getIndexField(). Don't forget to call the parent
75 * constructor if you override it.
79 abstract class IndexPager
extends ContextSource
implements Pager
{
81 public $mLimitsShown = array( 20, 50, 100, 250, 500 );
82 public $mDefaultLimit = 50;
83 public $mOffset, $mLimit;
84 public $mQueryDone = false;
86 public $mPastTheEndRow;
89 * The index to actually be used for ordering. This is a single column,
90 * for one ordering, even if multiple orderings are supported.
92 protected $mIndexField;
94 * An array of secondary columns to order by. These fields are not part of the offset.
95 * This is a column list for one ordering, even if multiple orderings are supported.
97 protected $mExtraSortFields;
98 /** For pages that support multiple types of ordering, which one to use.
100 protected $mOrderType;
102 * $mDefaultDirection gives the direction to use when sorting results:
103 * false for ascending, true for descending. If $mIsBackwards is set, we
104 * start from the opposite end, but we still sort the page itself according
105 * to $mDefaultDirection. E.g., if $mDefaultDirection is false but we're
106 * going backwards, we'll display the last page of results, but the last
107 * result will be at the bottom, not the top.
109 * Like $mIndexField, $mDefaultDirection will be a single value even if the
110 * class supports multiple default directions for different order types.
112 public $mDefaultDirection;
113 public $mIsBackwards;
115 /** True if the current result set is the first one */
119 protected $mLastShown, $mFirstShown, $mPastTheEndIndex, $mDefaultQuery, $mNavigationBar;
122 * Whether to include the offset in the query
124 protected $mIncludeOffset = false;
127 * Result object for the query. Warning: seek before use.
133 public function __construct( IContextSource
$context = null ) {
135 $this->setContext( $context );
138 $this->mRequest
= $this->getRequest();
140 # NB: the offset is quoted, not validated. It is treated as an
141 # arbitrary string to support the widest variety of index types. Be
142 # careful outputting it into HTML!
143 $this->mOffset
= $this->mRequest
->getText( 'offset' );
145 # Use consistent behavior for the limit options
146 $this->mDefaultLimit
= intval( $this->getUser()->getOption( 'rclimit' ) );
147 if ( !$this->mLimit
) {
148 // Don't override if a subclass calls $this->setLimit() in its constructor.
149 list( $this->mLimit
, /* $offset */ ) = $this->mRequest
->getLimitOffset();
152 $this->mIsBackwards
= ( $this->mRequest
->getVal( 'dir' ) == 'prev' );
153 $this->mDb
= wfGetDB( DB_SLAVE
);
155 $index = $this->getIndexField(); // column to sort on
156 $extraSort = $this->getExtraSortFields(); // extra columns to sort on for query planning
157 $order = $this->mRequest
->getVal( 'order' );
158 if( is_array( $index ) && isset( $index[$order] ) ) {
159 $this->mOrderType
= $order;
160 $this->mIndexField
= $index[$order];
161 $this->mExtraSortFields
= isset( $extraSort[$order] )
162 ?
(array)$extraSort[$order]
164 } elseif( is_array( $index ) ) {
165 # First element is the default
167 list( $this->mOrderType
, $this->mIndexField
) = each( $index );
168 $this->mExtraSortFields
= isset( $extraSort[$this->mOrderType
] )
169 ?
(array)$extraSort[$this->mOrderType
]
172 # $index is not an array
173 $this->mOrderType
= null;
174 $this->mIndexField
= $index;
175 $this->mExtraSortFields
= (array)$extraSort;
178 if( !isset( $this->mDefaultDirection
) ) {
179 $dir = $this->getDefaultDirections();
180 $this->mDefaultDirection
= is_array( $dir )
181 ?
$dir[$this->mOrderType
]
187 * Get the Database object in use
189 * @return DatabaseBase
191 public function getDatabase() {
196 * Do the query, using information from the object context. This function
197 * has been kept minimal to make it overridable if necessary, to allow for
198 * result sets formed from multiple DB queries.
200 public function doQuery() {
201 # Use the child class name for profiling
202 $fname = __METHOD__
. ' (' . get_class( $this ) . ')';
203 wfProfileIn( $fname );
205 $descending = ( $this->mIsBackwards
== $this->mDefaultDirection
);
206 # Plus an extra row so that we can tell the "next" link should be shown
207 $queryLimit = $this->mLimit +
1;
209 $this->mResult
= $this->reallyDoQuery(
215 $this->extractResultInfo( $this->mOffset
, $queryLimit, $this->mResult
);
216 $this->mQueryDone
= true;
218 $this->preprocessResults( $this->mResult
);
219 $this->mResult
->rewind(); // Paranoia
221 wfProfileOut( $fname );
225 * @return ResultWrapper The result wrapper.
227 function getResult() {
228 return $this->mResult
;
232 * Set the offset from an other source than the request
234 * @param $offset Int|String
236 function setOffset( $offset ) {
237 $this->mOffset
= $offset;
240 * Set the limit from an other source than the request
242 * Verifies limit is between 1 and 5000
244 * @param $limit Int|String
246 function setLimit( $limit ) {
247 $limit = (int) $limit;
248 // WebRequest::getLimitOffset() puts a cap of 5000, so do same here.
249 if ( $limit > 5000 ) {
253 $this->mLimit
= $limit;
258 * Set whether a row matching exactly the offset should be also included
259 * in the result or not. By default this is not the case, but when the
260 * offset is user-supplied this might be wanted.
262 * @param $include bool
264 public function setIncludeOffset( $include ) {
265 $this->mIncludeOffset
= $include;
269 * Extract some useful data from the result object for use by
270 * the navigation bar, put it into $this
272 * @param $offset String: index offset, inclusive
273 * @param $limit Integer: exact query limit
274 * @param $res ResultWrapper
276 function extractResultInfo( $offset, $limit, ResultWrapper
$res ) {
277 $numRows = $res->numRows();
279 # Remove any table prefix from index field
280 $parts = explode( '.', $this->mIndexField
);
281 $indexColumn = end( $parts );
283 $row = $res->fetchRow();
284 $firstIndex = $row[$indexColumn];
286 # Discard the extra result row if there is one
287 if ( $numRows > $this->mLimit
&& $numRows > 1 ) {
288 $res->seek( $numRows - 1 );
289 $this->mPastTheEndRow
= $res->fetchObject();
290 $indexField = $this->mIndexField
;
291 $this->mPastTheEndIndex
= $this->mPastTheEndRow
->$indexField;
292 $res->seek( $numRows - 2 );
293 $row = $res->fetchRow();
294 $lastIndex = $row[$indexColumn];
296 $this->mPastTheEndRow
= null;
297 # Setting indexes to an empty string means that they will be
298 # omitted if they would otherwise appear in URLs. It just so
299 # happens that this is the right thing to do in the standard
300 # UI, in all the relevant cases.
301 $this->mPastTheEndIndex
= '';
302 $res->seek( $numRows - 1 );
303 $row = $res->fetchRow();
304 $lastIndex = $row[$indexColumn];
309 $this->mPastTheEndRow
= null;
310 $this->mPastTheEndIndex
= '';
313 if ( $this->mIsBackwards
) {
314 $this->mIsFirst
= ( $numRows < $limit );
315 $this->mIsLast
= ( $offset == '' );
316 $this->mLastShown
= $firstIndex;
317 $this->mFirstShown
= $lastIndex;
319 $this->mIsFirst
= ( $offset == '' );
320 $this->mIsLast
= ( $numRows < $limit );
321 $this->mLastShown
= $lastIndex;
322 $this->mFirstShown
= $firstIndex;
327 * Get some text to go in brackets in the "function name" part of the SQL comment
331 function getSqlComment() {
332 return get_class( $this );
336 * Do a query with specified parameters, rather than using the object
339 * @param $offset String: index offset, inclusive
340 * @param $limit Integer: exact query limit
341 * @param $descending Boolean: query direction, false for ascending, true for descending
342 * @return ResultWrapper
344 public function reallyDoQuery( $offset, $limit, $descending ) {
345 list( $tables, $fields, $conds, $fname, $options, $join_conds ) = $this->buildQueryInfo( $offset, $limit, $descending );
346 return $this->mDb
->select( $tables, $fields, $conds, $fname, $options, $join_conds );
350 * Build variables to use by the database wrapper.
352 * @param $offset String: index offset, inclusive
353 * @param $limit Integer: exact query limit
354 * @param $descending Boolean: query direction, false for ascending, true for descending
357 protected function buildQueryInfo( $offset, $limit, $descending ) {
358 $fname = __METHOD__
. ' (' . $this->getSqlComment() . ')';
359 $info = $this->getQueryInfo();
360 $tables = $info['tables'];
361 $fields = $info['fields'];
362 $conds = isset( $info['conds'] ) ?
$info['conds'] : array();
363 $options = isset( $info['options'] ) ?
$info['options'] : array();
364 $join_conds = isset( $info['join_conds'] ) ?
$info['join_conds'] : array();
365 $sortColumns = array_merge( array( $this->mIndexField
), $this->mExtraSortFields
);
367 $options['ORDER BY'] = $sortColumns;
368 $operator = $this->mIncludeOffset ?
'>=' : '>';
371 foreach ( $sortColumns as $col ) {
372 $orderBy[] = $col . ' DESC';
374 $options['ORDER BY'] = $orderBy;
375 $operator = $this->mIncludeOffset ?
'<=' : '<';
377 if ( $offset != '' ) {
378 $conds[] = $this->mIndexField
. $operator . $this->mDb
->addQuotes( $offset );
380 $options['LIMIT'] = intval( $limit );
381 return array( $tables, $fields, $conds, $fname, $options, $join_conds );
385 * Pre-process results; useful for performing batch existence checks, etc.
387 * @param $result ResultWrapper
389 protected function preprocessResults( $result ) {}
392 * Get the formatted result list. Calls getStartBody(), formatRow() and
393 * getEndBody(), concatenates the results and returns them.
397 public function getBody() {
398 if ( !$this->mQueryDone
) {
402 if ( $this->mResult
->numRows() ) {
403 # Do any special query batches before display
404 $this->doBatchLookups();
407 # Don't use any extra rows returned by the query
408 $numRows = min( $this->mResult
->numRows(), $this->mLimit
);
410 $s = $this->getStartBody();
412 if ( $this->mIsBackwards
) {
413 for ( $i = $numRows - 1; $i >= 0; $i-- ) {
414 $this->mResult
->seek( $i );
415 $row = $this->mResult
->fetchObject();
416 $s .= $this->formatRow( $row );
419 $this->mResult
->seek( 0 );
420 for ( $i = 0; $i < $numRows; $i++
) {
421 $row = $this->mResult
->fetchObject();
422 $s .= $this->formatRow( $row );
426 $s .= $this->getEmptyBody();
428 $s .= $this->getEndBody();
435 * @param $text String: text displayed on the link
436 * @param $query Array: associative array of paramter to be in the query string
437 * @param $type String: value of the "rel" attribute
439 * @return String: HTML fragment
441 function makeLink( $text, array $query = null, $type = null ) {
442 if ( $query === null ) {
447 if( in_array( $type, array( 'first', 'prev', 'next', 'last' ) ) ) {
448 # HTML5 rel attributes
449 $attrs['rel'] = $type;
453 $attrs['class'] = "mw-{$type}link";
456 return Linker
::linkKnown(
460 $query +
$this->getDefaultQuery()
465 * Called from getBody(), before getStartBody() is called and
466 * after doQuery() was called. This will be called only if there
467 * are rows in the result set.
471 protected function doBatchLookups() {}
474 * Hook into getBody(), allows text to be inserted at the start. This
475 * will be called even if there are no rows in the result set.
479 protected function getStartBody() {
484 * Hook into getBody() for the end of the list
488 protected function getEndBody() {
493 * Hook into getBody(), for the bit between the start and the
494 * end when there are no rows
498 protected function getEmptyBody() {
503 * Get an array of query parameters that should be put into self-links.
504 * By default, all parameters passed in the URL are used, except for a
507 * @return array Associative array
509 function getDefaultQuery() {
510 if ( !isset( $this->mDefaultQuery
) ) {
511 $this->mDefaultQuery
= $this->getRequest()->getQueryValues();
512 unset( $this->mDefaultQuery
['title'] );
513 unset( $this->mDefaultQuery
['dir'] );
514 unset( $this->mDefaultQuery
['offset'] );
515 unset( $this->mDefaultQuery
['limit'] );
516 unset( $this->mDefaultQuery
['order'] );
517 unset( $this->mDefaultQuery
['month'] );
518 unset( $this->mDefaultQuery
['year'] );
520 return $this->mDefaultQuery
;
524 * Get the number of rows in the result set
528 function getNumRows() {
529 if ( !$this->mQueryDone
) {
532 return $this->mResult
->numRows();
536 * Get a URL query array for the prev, next, first and last links.
540 function getPagingQueries() {
541 if ( !$this->mQueryDone
) {
545 # Don't announce the limit everywhere if it's the default
546 $urlLimit = $this->mLimit
== $this->mDefaultLimit ?
null : $this->mLimit
;
548 if ( $this->mIsFirst
) {
554 'offset' => $this->mFirstShown
,
557 $first = array( 'limit' => $urlLimit );
559 if ( $this->mIsLast
) {
563 $next = array( 'offset' => $this->mLastShown
, 'limit' => $urlLimit );
564 $last = array( 'dir' => 'prev', 'limit' => $urlLimit );
575 * Returns whether to show the "navigation bar"
579 function isNavigationBarShown() {
580 if ( !$this->mQueryDone
) {
583 // Hide navigation by default if there is nothing to page
584 return !($this->mIsFirst
&& $this->mIsLast
);
588 * Get paging links. If a link is disabled, the item from $disabledTexts
589 * will be used. If there is no such item, the unlinked text from
590 * $linkTexts will be used. Both $linkTexts and $disabledTexts are arrays
593 * @param $linkTexts Array
594 * @param $disabledTexts Array
597 function getPagingLinks( $linkTexts, $disabledTexts = array() ) {
598 $queries = $this->getPagingQueries();
601 foreach ( $queries as $type => $query ) {
602 if ( $query !== false ) {
603 $links[$type] = $this->makeLink(
608 } elseif ( isset( $disabledTexts[$type] ) ) {
609 $links[$type] = $disabledTexts[$type];
611 $links[$type] = $linkTexts[$type];
618 function getLimitLinks() {
620 if ( $this->mIsBackwards
) {
621 $offset = $this->mPastTheEndIndex
;
623 $offset = $this->mOffset
;
625 foreach ( $this->mLimitsShown
as $limit ) {
626 $links[] = $this->makeLink(
627 $this->getLanguage()->formatNum( $limit ),
628 array( 'offset' => $offset, 'limit' => $limit ),
636 * Abstract formatting function. This should return an HTML string
637 * representing the result row $row. Rows will be concatenated and
638 * returned by getBody()
640 * @param $row Object: database row
643 abstract function formatRow( $row );
646 * This function should be overridden to provide all parameters
647 * needed for the main paged query. It returns an associative
648 * array with the following elements:
649 * tables => Table(s) for passing to Database::select()
650 * fields => Field(s) for passing to Database::select(), may be *
651 * conds => WHERE conditions
652 * options => option array
653 * join_conds => JOIN conditions
657 abstract function getQueryInfo();
660 * This function should be overridden to return the name of the index fi-
661 * eld. If the pager supports multiple orders, it may return an array of
662 * 'querykey' => 'indexfield' pairs, so that a request with &count=querykey
663 * will use indexfield to sort. In this case, the first returned key is
666 * Needless to say, it's really not a good idea to use a non-unique index
667 * for this! That won't page right.
669 * @return string|Array
671 abstract function getIndexField();
674 * This function should be overridden to return the names of secondary columns
675 * to order by in addition to the column in getIndexField(). These fields will
676 * not be used in the pager offset or in any links for users.
678 * If getIndexField() returns an array of 'querykey' => 'indexfield' pairs then
679 * this must return a corresponding array of 'querykey' => array( fields...) pairs
680 * in order for a request with &count=querykey to use array( fields...) to sort.
682 * This is useful for pagers that GROUP BY a unique column (say page_id)
683 * and ORDER BY another (say page_len). Using GROUP BY and ORDER BY both on
684 * page_len,page_id avoids temp tables (given a page_len index). This would
685 * also work if page_id was non-unique but we had a page_len,page_id index.
689 protected function getExtraSortFields() { return array(); }
692 * Return the default sorting direction: false for ascending, true for de-
693 * scending. You can also have an associative array of ordertype => dir,
694 * if multiple order types are supported. In this case getIndexField()
695 * must return an array, and the keys of that must exactly match the keys
698 * For backward compatibility, this method's return value will be ignored
699 * if $this->mDefaultDirection is already set when the constructor is
700 * called, for instance if it's statically initialized. In that case the
701 * value of that variable (which must be a boolean) will be used.
703 * Note that despite its name, this does not return the value of the
704 * $this->mDefaultDirection member variable. That's the default for this
705 * particular instantiation, which is a single value. This is the set of
706 * all defaults for the class.
710 protected function getDefaultDirections() { return false; }
715 * IndexPager with an alphabetic list and a formatted navigation bar
718 abstract class AlphabeticPager
extends IndexPager
{
721 * Shamelessly stolen bits from ReverseChronologicalPager,
722 * didn't want to do class magic as may be still revamped
724 * @return String HTML
726 function getNavigationBar() {
727 if ( !$this->isNavigationBarShown() ) {
731 if( isset( $this->mNavigationBar
) ) {
732 return $this->mNavigationBar
;
736 'prev' => $this->msg( 'prevn' )->numParams( $this->mLimit
)->escaped(),
737 'next' => $this->msg( 'nextn' )->numParams( $this->mLimit
)->escaped(),
738 'first' => $this->msg( 'page_first' )->escaped(),
739 'last' => $this->msg( 'page_last' )->escaped()
742 $lang = $this->getLanguage();
744 $pagingLinks = $this->getPagingLinks( $linkTexts );
745 $limitLinks = $this->getLimitLinks();
746 $limits = $lang->pipeList( $limitLinks );
748 $this->mNavigationBar
= $this->msg( 'parentheses' )->rawParams(
749 $lang->pipeList( array( $pagingLinks['first'],
750 $pagingLinks['last'] ) ) )->escaped() . " " .
751 $this->msg( 'viewprevnext' )->rawParams( $pagingLinks['prev'],
752 $pagingLinks['next'], $limits )->escaped();
754 if( !is_array( $this->getIndexField() ) ) {
755 # Early return to avoid undue nesting
756 return $this->mNavigationBar
;
761 $msgs = $this->getOrderTypeMessages();
762 foreach( array_keys( $msgs ) as $order ) {
766 $extra .= $this->msg( 'pipe-separator' )->escaped();
769 if( $order == $this->mOrderType
) {
770 $extra .= $this->msg( $msgs[$order] )->escaped();
772 $extra .= $this->makeLink(
773 $this->msg( $msgs[$order] )->escaped(),
774 array( 'order' => $order )
779 if( $extra !== '' ) {
780 $extra = ' ' . $this->msg( 'parentheses' )->rawParams( $extra )->escaped();
781 $this->mNavigationBar
.= $extra;
784 return $this->mNavigationBar
;
788 * If this supports multiple order type messages, give the message key for
789 * enabling each one in getNavigationBar. The return type is an associa-
790 * tive array whose keys must exactly match the keys of the array returned
791 * by getIndexField(), and whose values are message keys.
795 protected function getOrderTypeMessages() {
801 * IndexPager with a formatted navigation bar
804 abstract class ReverseChronologicalPager
extends IndexPager
{
805 public $mDefaultDirection = true;
809 function getNavigationBar() {
810 if ( !$this->isNavigationBarShown() ) {
814 if ( isset( $this->mNavigationBar
) ) {
815 return $this->mNavigationBar
;
819 'prev' => $this->msg( 'pager-newer-n' )->numParams( $this->mLimit
)->escaped(),
820 'next' => $this->msg( 'pager-older-n' )->numParams( $this->mLimit
)->escaped(),
821 'first' => $this->msg( 'histlast' )->escaped(),
822 'last' => $this->msg( 'histfirst' )->escaped()
825 $pagingLinks = $this->getPagingLinks( $linkTexts );
826 $limitLinks = $this->getLimitLinks();
827 $limits = $this->getLanguage()->pipeList( $limitLinks );
828 $firstLastLinks = $this->msg( 'parentheses' )->rawParams( "{$pagingLinks['first']}" .
829 $this->msg( 'pipe-separator' )->escaped() .
830 "{$pagingLinks['last']}" )->escaped();
832 $this->mNavigationBar
= $firstLastLinks . ' ' .
833 $this->msg( 'viewprevnext' )->rawParams(
834 $pagingLinks['prev'], $pagingLinks['next'], $limits )->escaped();
836 return $this->mNavigationBar
;
839 function getDateCond( $year, $month ) {
840 $year = intval( $year );
841 $month = intval( $month );
843 // Basic validity checks
844 $this->mYear
= $year > 0 ?
$year : false;
845 $this->mMonth
= ( $month > 0 && $month < 13 ) ?
$month : false;
847 // Given an optional year and month, we need to generate a timestamp
848 // to use as "WHERE rev_timestamp <= result"
849 // Examples: year = 2006 equals < 20070101 (+000000)
850 // year=2005, month=1 equals < 20050201
851 // year=2005, month=12 equals < 20060101
852 if ( !$this->mYear
&& !$this->mMonth
) {
856 if ( $this->mYear
) {
857 $year = $this->mYear
;
859 // If no year given, assume the current one
860 $year = gmdate( 'Y' );
861 // If this month hasn't happened yet this year, go back to last year's month
862 if( $this->mMonth
> gmdate( 'n' ) ) {
867 if ( $this->mMonth
) {
868 $month = $this->mMonth +
1;
869 // For December, we want January 1 of the next year
875 // No month implies we want up to the end of the year in question
881 if ( $year > 2032 ) {
885 $ymd = (int)sprintf( "%04d%02d01", $year, $month );
887 if ( $ymd > 20320101 ) {
891 $this->mOffset
= $this->mDb
->timestamp( "${ymd}000000" );
896 * Table-based display with a user-selectable sort order
899 abstract class TablePager
extends IndexPager
{
903 public function __construct( IContextSource
$context = null ) {
905 $this->setContext( $context );
908 $this->mSort
= $this->getRequest()->getText( 'sort' );
909 if ( !array_key_exists( $this->mSort
, $this->getFieldNames() ) ) {
910 $this->mSort
= $this->getDefaultSort();
912 if ( $this->getRequest()->getBool( 'asc' ) ) {
913 $this->mDefaultDirection
= false;
914 } elseif ( $this->getRequest()->getBool( 'desc' ) ) {
915 $this->mDefaultDirection
= true;
916 } /* Else leave it at whatever the class default is */
918 parent
::__construct();
925 function getStartBody() {
927 $tableClass = htmlspecialchars( $this->getTableClass() );
928 $sortClass = htmlspecialchars( $this->getSortHeaderClass() );
930 $s = "<table style='border:1px;' class=\"mw-datatable $tableClass\"><thead><tr>\n";
931 $fields = $this->getFieldNames();
934 foreach ( $fields as $field => $name ) {
935 if ( strval( $name ) == '' ) {
936 $s .= "<th> </th>\n";
937 } elseif ( $this->isFieldSortable( $field ) ) {
938 $query = array( 'sort' => $field, 'limit' => $this->mLimit
);
939 if ( $field == $this->mSort
) {
940 # This is the sorted column
941 # Prepare a link that goes in the other sort order
942 if ( $this->mDefaultDirection
) {
944 $image = 'Arr_d.png';
947 $alt = $this->msg( 'descending_abbrev' )->escaped();
950 $image = 'Arr_u.png';
952 $query['desc'] = '1';
953 $alt = $this->msg( 'ascending_abbrev' )->escaped();
955 $image = htmlspecialchars( "$wgStylePath/common/images/$image" );
956 $link = $this->makeLink(
957 "<img width=\"12\" height=\"12\" alt=\"$alt\" src=\"$image\" />" .
958 htmlspecialchars( $name ), $query );
959 $s .= "<th class=\"$sortClass\">$link</th>\n";
961 $s .= '<th>' . $this->makeLink( htmlspecialchars( $name ), $query ) . "</th>\n";
964 $s .= '<th>' . htmlspecialchars( $name ) . "</th>\n";
967 $s .= "</tr></thead><tbody>\n";
975 function getEndBody() {
976 return "</tbody></table>\n";
983 function getEmptyBody() {
984 $colspan = count( $this->getFieldNames() );
985 $msgEmpty = $this->msg( 'table_pager_empty' )->escaped();
986 return "<tr><td colspan=\"$colspan\">$msgEmpty</td></tr>\n";
991 * @param stdClass $row
992 * @return String HTML
994 function formatRow( $row ) {
995 $this->mCurrentRow
= $row; // In case formatValue etc need to know
996 $s = Xml
::openElement( 'tr', $this->getRowAttrs( $row ) );
997 $fieldNames = $this->getFieldNames();
999 foreach ( $fieldNames as $field => $name ) {
1000 $value = isset( $row->$field ) ?
$row->$field : null;
1001 $formatted = strval( $this->formatValue( $field, $value ) );
1003 if ( $formatted == '' ) {
1004 $formatted = ' ';
1007 $s .= Xml
::tags( 'td', $this->getCellAttrs( $field, $value ), $formatted );
1016 * Get a class name to be applied to the given row.
1020 * @param $row Object: the database result row
1023 function getRowClass( $row ) {
1028 * Get attributes to be applied to the given row.
1032 * @param $row Object: the database result row
1033 * @return Array of attribute => value
1035 function getRowAttrs( $row ) {
1036 $class = $this->getRowClass( $row );
1037 if ( $class === '' ) {
1038 // Return an empty array to avoid clutter in HTML like class=""
1041 return array( 'class' => $this->getRowClass( $row ) );
1046 * Get any extra attributes to be applied to the given cell. Don't
1047 * take this as an excuse to hardcode styles; use classes and
1048 * CSS instead. Row context is available in $this->mCurrentRow
1052 * @param $field String The column
1053 * @param $value String The cell contents
1054 * @return Array of attr => value
1056 function getCellAttrs( $field, $value ) {
1057 return array( 'class' => 'TablePager_col_' . $field );
1064 function getIndexField() {
1065 return $this->mSort
;
1072 function getTableClass() {
1073 return 'TablePager';
1080 function getNavClass() {
1081 return 'TablePager_nav';
1088 function getSortHeaderClass() {
1089 return 'TablePager_sort';
1093 * A navigation bar with images
1094 * @return String HTML
1096 public function getNavigationBar() {
1097 global $wgStylePath;
1099 if ( !$this->isNavigationBarShown() ) {
1103 $path = "$wgStylePath/common/images";
1105 'first' => 'table_pager_first',
1106 'prev' => 'table_pager_prev',
1107 'next' => 'table_pager_next',
1108 'last' => 'table_pager_last',
1111 'first' => 'arrow_first_25.png',
1112 'prev' => 'arrow_left_25.png',
1113 'next' => 'arrow_right_25.png',
1114 'last' => 'arrow_last_25.png',
1116 $disabledImages = array(
1117 'first' => 'arrow_disabled_first_25.png',
1118 'prev' => 'arrow_disabled_left_25.png',
1119 'next' => 'arrow_disabled_right_25.png',
1120 'last' => 'arrow_disabled_last_25.png',
1122 if( $this->getLanguage()->isRTL() ) {
1123 $keys = array_keys( $labels );
1124 $images = array_combine( $keys, array_reverse( $images ) );
1125 $disabledImages = array_combine( $keys, array_reverse( $disabledImages ) );
1128 $linkTexts = array();
1129 $disabledTexts = array();
1130 foreach ( $labels as $type => $label ) {
1131 $msgLabel = $this->msg( $label )->escaped();
1132 $linkTexts[$type] = "<img src=\"$path/{$images[$type]}\" alt=\"$msgLabel\"/><br />$msgLabel";
1133 $disabledTexts[$type] = "<img src=\"$path/{$disabledImages[$type]}\" alt=\"$msgLabel\"/><br />$msgLabel";
1135 $links = $this->getPagingLinks( $linkTexts, $disabledTexts );
1137 $navClass = htmlspecialchars( $this->getNavClass() );
1138 $s = "<table class=\"$navClass\"><tr>\n";
1139 $width = 100 / count( $links ) . '%';
1140 foreach ( $labels as $type => $label ) {
1141 $s .= "<td style='width:$width;'>{$links[$type]}</td>\n";
1143 $s .= "</tr></table>\n";
1148 * Get a "<select>" element which has options for each of the allowed limits
1150 * @return String: HTML fragment
1152 public function getLimitSelect() {
1153 # Add the current limit from the query string
1154 # to avoid that the limit is lost after clicking Go next time
1155 if ( !in_array( $this->mLimit
, $this->mLimitsShown
) ) {
1156 $this->mLimitsShown
[] = $this->mLimit
;
1157 sort( $this->mLimitsShown
);
1159 $s = Html
::openElement( 'select', array( 'name' => 'limit' ) ) . "\n";
1160 foreach ( $this->mLimitsShown
as $key => $value ) {
1161 # The pair is either $index => $limit, in which case the $value
1162 # will be numeric, or $limit => $text, in which case the $value
1164 if( is_int( $value ) ){
1166 $text = $this->getLanguage()->formatNum( $limit );
1171 $s .= Xml
::option( $text, $limit, $limit == $this->mLimit
) . "\n";
1173 $s .= Html
::closeElement( 'select' );
1178 * Get \<input type="hidden"\> elements for use in a method="get" form.
1179 * Resubmits all defined elements of the query string, except for a
1180 * blacklist, passed in the $blacklist parameter.
1182 * @param $blacklist Array parameters from the request query which should not be resubmitted
1183 * @return String: HTML fragment
1185 function getHiddenFields( $blacklist = array() ) {
1186 $blacklist = (array)$blacklist;
1187 $query = $this->getRequest()->getQueryValues();
1188 foreach ( $blacklist as $name ) {
1189 unset( $query[$name] );
1192 foreach ( $query as $name => $value ) {
1193 $encName = htmlspecialchars( $name );
1194 $encValue = htmlspecialchars( $value );
1195 $s .= "<input type=\"hidden\" name=\"$encName\" value=\"$encValue\"/>\n";
1201 * Get a form containing a limit selection dropdown
1203 * @return String: HTML fragment
1205 function getLimitForm() {
1208 return Xml
::openElement(
1212 'action' => $wgScript
1213 ) ) . "\n" . $this->getLimitDropdown() . "</form>\n";
1217 * Gets a limit selection dropdown
1221 function getLimitDropdown() {
1222 # Make the select with some explanatory text
1223 $msgSubmit = $this->msg( 'table_pager_limit_submit' )->escaped();
1225 return $this->msg( 'table_pager_limit' )
1226 ->rawParams( $this->getLimitSelect() )->escaped() .
1227 "\n<input type=\"submit\" value=\"$msgSubmit\"/>\n" .
1228 $this->getHiddenFields( array( 'limit' ) );
1232 * Return true if the named field should be sortable by the UI, false
1235 * @param $field String
1237 abstract function isFieldSortable( $field );
1240 * Format a table cell. The return value should be HTML, but use an empty
1241 * string not   for empty cells. Do not include the <td> and </td>.
1243 * The current result row is available as $this->mCurrentRow, in case you
1244 * need more context.
1248 * @param $name String: the database field name
1249 * @param $value String: the value retrieved from the database
1251 abstract function formatValue( $name, $value );
1254 * The database field name used as a default sort order.
1260 abstract function getDefaultSort();
1263 * An array mapping database field names to a textual description of the
1264 * field name, for use in the table header. The description should be plain
1265 * text, it will be HTML-escaped later.
1269 abstract function getFieldNames();