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
= $this->getUser()->getIntOption( '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 # Let the subclass set the DB here; otherwise use a slave DB for the current wiki
154 $this->mDb
= $this->mDb ?
: wfGetDB( DB_SLAVE
);
156 $index = $this->getIndexField(); // column to sort on
157 $extraSort = $this->getExtraSortFields(); // extra columns to sort on for query planning
158 $order = $this->mRequest
->getVal( 'order' );
159 if ( is_array( $index ) && isset( $index[$order] ) ) {
160 $this->mOrderType
= $order;
161 $this->mIndexField
= $index[$order];
162 $this->mExtraSortFields
= isset( $extraSort[$order] )
163 ?
(array)$extraSort[$order]
165 } elseif ( is_array( $index ) ) {
166 # First element is the default
168 list( $this->mOrderType
, $this->mIndexField
) = each( $index );
169 $this->mExtraSortFields
= isset( $extraSort[$this->mOrderType
] )
170 ?
(array)$extraSort[$this->mOrderType
]
173 # $index is not an array
174 $this->mOrderType
= null;
175 $this->mIndexField
= $index;
176 $this->mExtraSortFields
= (array)$extraSort;
179 if ( !isset( $this->mDefaultDirection
) ) {
180 $dir = $this->getDefaultDirections();
181 $this->mDefaultDirection
= is_array( $dir )
182 ?
$dir[$this->mOrderType
]
188 * Get the Database object in use
190 * @return DatabaseBase
192 public function getDatabase() {
197 * Do the query, using information from the object context. This function
198 * has been kept minimal to make it overridable if necessary, to allow for
199 * result sets formed from multiple DB queries.
201 public function doQuery() {
202 # Use the child class name for profiling
203 $fname = __METHOD__
. ' (' . get_class( $this ) . ')';
204 wfProfileIn( $fname );
206 $descending = ( $this->mIsBackwards
== $this->mDefaultDirection
);
207 # Plus an extra row so that we can tell the "next" link should be shown
208 $queryLimit = $this->mLimit +
1;
210 if ( $this->mOffset
== '' ) {
213 // If there's an offset, we may or may not be at the first entry.
214 // The only way to tell is to run the query in the opposite
215 // direction see if we get a row.
216 $oldIncludeOffset = $this->mIncludeOffset
;
217 $this->mIncludeOffset
= !$this->mIncludeOffset
;
218 $isFirst = !$this->reallyDoQuery( $this->mOffset
, 1, !$descending )->numRows();
219 $this->mIncludeOffset
= $oldIncludeOffset;
222 $this->mResult
= $this->reallyDoQuery(
228 $this->extractResultInfo( $isFirst, $queryLimit, $this->mResult
);
229 $this->mQueryDone
= true;
231 $this->preprocessResults( $this->mResult
);
232 $this->mResult
->rewind(); // Paranoia
234 wfProfileOut( $fname );
238 * @return ResultWrapper The result wrapper.
240 function getResult() {
241 return $this->mResult
;
245 * Set the offset from an other source than the request
247 * @param $offset Int|String
249 function setOffset( $offset ) {
250 $this->mOffset
= $offset;
254 * Set the limit from an other source than the request
256 * Verifies limit is between 1 and 5000
258 * @param $limit Int|String
260 function setLimit( $limit ) {
261 $limit = (int)$limit;
262 // WebRequest::getLimitOffset() puts a cap of 5000, so do same here.
263 if ( $limit > 5000 ) {
267 $this->mLimit
= $limit;
272 * Get the current limit
276 function getLimit() {
277 return $this->mLimit
;
281 * Set whether a row matching exactly the offset should be also included
282 * in the result or not. By default this is not the case, but when the
283 * offset is user-supplied this might be wanted.
285 * @param $include bool
287 public function setIncludeOffset( $include ) {
288 $this->mIncludeOffset
= $include;
292 * Extract some useful data from the result object for use by
293 * the navigation bar, put it into $this
295 * @param $isFirst bool: False if there are rows before those fetched (i.e.
296 * if a "previous" link would make sense)
297 * @param $limit Integer: exact query limit
298 * @param $res ResultWrapper
300 function extractResultInfo( $isFirst, $limit, ResultWrapper
$res ) {
301 $numRows = $res->numRows();
303 # Remove any table prefix from index field
304 $parts = explode( '.', $this->mIndexField
);
305 $indexColumn = end( $parts );
307 $row = $res->fetchRow();
308 $firstIndex = $row[$indexColumn];
310 # Discard the extra result row if there is one
311 if ( $numRows > $this->mLimit
&& $numRows > 1 ) {
312 $res->seek( $numRows - 1 );
313 $this->mPastTheEndRow
= $res->fetchObject();
314 $this->mPastTheEndIndex
= $this->mPastTheEndRow
->$indexColumn;
315 $res->seek( $numRows - 2 );
316 $row = $res->fetchRow();
317 $lastIndex = $row[$indexColumn];
319 $this->mPastTheEndRow
= null;
320 # Setting indexes to an empty string means that they will be
321 # omitted if they would otherwise appear in URLs. It just so
322 # happens that this is the right thing to do in the standard
323 # UI, in all the relevant cases.
324 $this->mPastTheEndIndex
= '';
325 $res->seek( $numRows - 1 );
326 $row = $res->fetchRow();
327 $lastIndex = $row[$indexColumn];
332 $this->mPastTheEndRow
= null;
333 $this->mPastTheEndIndex
= '';
336 if ( $this->mIsBackwards
) {
337 $this->mIsFirst
= ( $numRows < $limit );
338 $this->mIsLast
= $isFirst;
339 $this->mLastShown
= $firstIndex;
340 $this->mFirstShown
= $lastIndex;
342 $this->mIsFirst
= $isFirst;
343 $this->mIsLast
= ( $numRows < $limit );
344 $this->mLastShown
= $lastIndex;
345 $this->mFirstShown
= $firstIndex;
350 * Get some text to go in brackets in the "function name" part of the SQL comment
354 function getSqlComment() {
355 return get_class( $this );
359 * Do a query with specified parameters, rather than using the object
362 * @param string $offset index offset, inclusive
363 * @param $limit Integer: exact query limit
364 * @param $descending Boolean: query direction, false for ascending, true for descending
365 * @return ResultWrapper
367 public function reallyDoQuery( $offset, $limit, $descending ) {
368 list( $tables, $fields, $conds, $fname, $options, $join_conds ) = $this->buildQueryInfo( $offset, $limit, $descending );
369 return $this->mDb
->select( $tables, $fields, $conds, $fname, $options, $join_conds );
373 * Build variables to use by the database wrapper.
375 * @param string $offset index offset, inclusive
376 * @param $limit Integer: exact query limit
377 * @param $descending Boolean: query direction, false for ascending, true for descending
380 protected function buildQueryInfo( $offset, $limit, $descending ) {
381 $fname = __METHOD__
. ' (' . $this->getSqlComment() . ')';
382 $info = $this->getQueryInfo();
383 $tables = $info['tables'];
384 $fields = $info['fields'];
385 $conds = isset( $info['conds'] ) ?
$info['conds'] : array();
386 $options = isset( $info['options'] ) ?
$info['options'] : array();
387 $join_conds = isset( $info['join_conds'] ) ?
$info['join_conds'] : array();
388 $sortColumns = array_merge( array( $this->mIndexField
), $this->mExtraSortFields
);
390 $options['ORDER BY'] = $sortColumns;
391 $operator = $this->mIncludeOffset ?
'>=' : '>';
394 foreach ( $sortColumns as $col ) {
395 $orderBy[] = $col . ' DESC';
397 $options['ORDER BY'] = $orderBy;
398 $operator = $this->mIncludeOffset ?
'<=' : '<';
400 if ( $offset != '' ) {
401 $conds[] = $this->mIndexField
. $operator . $this->mDb
->addQuotes( $offset );
403 $options['LIMIT'] = intval( $limit );
404 return array( $tables, $fields, $conds, $fname, $options, $join_conds );
408 * Pre-process results; useful for performing batch existence checks, etc.
410 * @param $result ResultWrapper
412 protected function preprocessResults( $result ) {}
415 * Get the formatted result list. Calls getStartBody(), formatRow() and
416 * getEndBody(), concatenates the results and returns them.
420 public function getBody() {
421 if ( !$this->mQueryDone
) {
425 if ( $this->mResult
->numRows() ) {
426 # Do any special query batches before display
427 $this->doBatchLookups();
430 # Don't use any extra rows returned by the query
431 $numRows = min( $this->mResult
->numRows(), $this->mLimit
);
433 $s = $this->getStartBody();
435 if ( $this->mIsBackwards
) {
436 for ( $i = $numRows - 1; $i >= 0; $i-- ) {
437 $this->mResult
->seek( $i );
438 $row = $this->mResult
->fetchObject();
439 $s .= $this->formatRow( $row );
442 $this->mResult
->seek( 0 );
443 for ( $i = 0; $i < $numRows; $i++
) {
444 $row = $this->mResult
->fetchObject();
445 $s .= $this->formatRow( $row );
449 $s .= $this->getEmptyBody();
451 $s .= $this->getEndBody();
458 * @param string $text text displayed on the link
459 * @param array $query associative array of parameter to be in the query string
460 * @param string $type value of the "rel" attribute
462 * @return String: HTML fragment
464 function makeLink( $text, array $query = null, $type = null ) {
465 if ( $query === null ) {
470 if ( in_array( $type, array( 'first', 'prev', 'next', 'last' ) ) ) {
471 # HTML5 rel attributes
472 $attrs['rel'] = $type;
476 $attrs['class'] = "mw-{$type}link";
479 return Linker
::linkKnown(
483 $query +
$this->getDefaultQuery()
488 * Called from getBody(), before getStartBody() is called and
489 * after doQuery() was called. This will be called only if there
490 * are rows in the result set.
494 protected function doBatchLookups() {}
497 * Hook into getBody(), allows text to be inserted at the start. This
498 * will be called even if there are no rows in the result set.
502 protected function getStartBody() {
507 * Hook into getBody() for the end of the list
511 protected function getEndBody() {
516 * Hook into getBody(), for the bit between the start and the
517 * end when there are no rows
521 protected function getEmptyBody() {
526 * Get an array of query parameters that should be put into self-links.
527 * By default, all parameters passed in the URL are used, except for a
530 * @return array Associative array
532 function getDefaultQuery() {
533 if ( !isset( $this->mDefaultQuery
) ) {
534 $this->mDefaultQuery
= $this->getRequest()->getQueryValues();
535 unset( $this->mDefaultQuery
['title'] );
536 unset( $this->mDefaultQuery
['dir'] );
537 unset( $this->mDefaultQuery
['offset'] );
538 unset( $this->mDefaultQuery
['limit'] );
539 unset( $this->mDefaultQuery
['order'] );
540 unset( $this->mDefaultQuery
['month'] );
541 unset( $this->mDefaultQuery
['year'] );
543 return $this->mDefaultQuery
;
547 * Get the number of rows in the result set
551 function getNumRows() {
552 if ( !$this->mQueryDone
) {
555 return $this->mResult
->numRows();
559 * Get a URL query array for the prev, next, first and last links.
563 function getPagingQueries() {
564 if ( !$this->mQueryDone
) {
568 # Don't announce the limit everywhere if it's the default
569 $urlLimit = $this->mLimit
== $this->mDefaultLimit ?
null : $this->mLimit
;
571 if ( $this->mIsFirst
) {
577 'offset' => $this->mFirstShown
,
580 $first = array( 'limit' => $urlLimit );
582 if ( $this->mIsLast
) {
586 $next = array( 'offset' => $this->mLastShown
, 'limit' => $urlLimit );
587 $last = array( 'dir' => 'prev', 'limit' => $urlLimit );
598 * Returns whether to show the "navigation bar"
602 function isNavigationBarShown() {
603 if ( !$this->mQueryDone
) {
606 // Hide navigation by default if there is nothing to page
607 return !( $this->mIsFirst
&& $this->mIsLast
);
611 * Get paging links. If a link is disabled, the item from $disabledTexts
612 * will be used. If there is no such item, the unlinked text from
613 * $linkTexts will be used. Both $linkTexts and $disabledTexts are arrays
616 * @param $linkTexts Array
617 * @param $disabledTexts Array
620 function getPagingLinks( $linkTexts, $disabledTexts = array() ) {
621 $queries = $this->getPagingQueries();
624 foreach ( $queries as $type => $query ) {
625 if ( $query !== false ) {
626 $links[$type] = $this->makeLink(
631 } elseif ( isset( $disabledTexts[$type] ) ) {
632 $links[$type] = $disabledTexts[$type];
634 $links[$type] = $linkTexts[$type];
641 function getLimitLinks() {
643 if ( $this->mIsBackwards
) {
644 $offset = $this->mPastTheEndIndex
;
646 $offset = $this->mOffset
;
648 foreach ( $this->mLimitsShown
as $limit ) {
649 $links[] = $this->makeLink(
650 $this->getLanguage()->formatNum( $limit ),
651 array( 'offset' => $offset, 'limit' => $limit ),
659 * Abstract formatting function. This should return an HTML string
660 * representing the result row $row. Rows will be concatenated and
661 * returned by getBody()
663 * @param array|stdClass $row Database row
666 abstract function formatRow( $row );
669 * This function should be overridden to provide all parameters
670 * needed for the main paged query. It returns an associative
671 * array with the following elements:
672 * tables => Table(s) for passing to Database::select()
673 * fields => Field(s) for passing to Database::select(), may be *
674 * conds => WHERE conditions
675 * options => option array
676 * join_conds => JOIN conditions
680 abstract function getQueryInfo();
683 * This function should be overridden to return the name of the index fi-
684 * eld. If the pager supports multiple orders, it may return an array of
685 * 'querykey' => 'indexfield' pairs, so that a request with &count=querykey
686 * will use indexfield to sort. In this case, the first returned key is
689 * Needless to say, it's really not a good idea to use a non-unique index
690 * for this! That won't page right.
692 * @return string|Array
694 abstract function getIndexField();
697 * This function should be overridden to return the names of secondary columns
698 * to order by in addition to the column in getIndexField(). These fields will
699 * not be used in the pager offset or in any links for users.
701 * If getIndexField() returns an array of 'querykey' => 'indexfield' pairs then
702 * this must return a corresponding array of 'querykey' => array( fields...) pairs
703 * in order for a request with &count=querykey to use array( fields...) to sort.
705 * This is useful for pagers that GROUP BY a unique column (say page_id)
706 * and ORDER BY another (say page_len). Using GROUP BY and ORDER BY both on
707 * page_len,page_id avoids temp tables (given a page_len index). This would
708 * also work if page_id was non-unique but we had a page_len,page_id index.
712 protected function getExtraSortFields() {
717 * Return the default sorting direction: false for ascending, true for
718 * descending. You can also have an associative array of ordertype => dir,
719 * if multiple order types are supported. In this case getIndexField()
720 * must return an array, and the keys of that must exactly match the keys
723 * For backward compatibility, this method's return value will be ignored
724 * if $this->mDefaultDirection is already set when the constructor is
725 * called, for instance if it's statically initialized. In that case the
726 * value of that variable (which must be a boolean) will be used.
728 * Note that despite its name, this does not return the value of the
729 * $this->mDefaultDirection member variable. That's the default for this
730 * particular instantiation, which is a single value. This is the set of
731 * all defaults for the class.
735 protected function getDefaultDirections() {
741 * IndexPager with an alphabetic list and a formatted navigation bar
744 abstract class AlphabeticPager
extends IndexPager
{
747 * Shamelessly stolen bits from ReverseChronologicalPager,
748 * didn't want to do class magic as may be still revamped
750 * @return String HTML
752 function getNavigationBar() {
753 if ( !$this->isNavigationBarShown() ) {
757 if ( isset( $this->mNavigationBar
) ) {
758 return $this->mNavigationBar
;
762 'prev' => $this->msg( 'prevn' )->numParams( $this->mLimit
)->escaped(),
763 'next' => $this->msg( 'nextn' )->numParams( $this->mLimit
)->escaped(),
764 'first' => $this->msg( 'page_first' )->escaped(),
765 'last' => $this->msg( 'page_last' )->escaped()
768 $lang = $this->getLanguage();
770 $pagingLinks = $this->getPagingLinks( $linkTexts );
771 $limitLinks = $this->getLimitLinks();
772 $limits = $lang->pipeList( $limitLinks );
774 $this->mNavigationBar
= $this->msg( 'parentheses' )->rawParams(
775 $lang->pipeList( array( $pagingLinks['first'],
776 $pagingLinks['last'] ) ) )->escaped() . " " .
777 $this->msg( 'viewprevnext' )->rawParams( $pagingLinks['prev'],
778 $pagingLinks['next'], $limits )->escaped();
780 if ( !is_array( $this->getIndexField() ) ) {
781 # Early return to avoid undue nesting
782 return $this->mNavigationBar
;
787 $msgs = $this->getOrderTypeMessages();
788 foreach ( array_keys( $msgs ) as $order ) {
792 $extra .= $this->msg( 'pipe-separator' )->escaped();
795 if ( $order == $this->mOrderType
) {
796 $extra .= $this->msg( $msgs[$order] )->escaped();
798 $extra .= $this->makeLink(
799 $this->msg( $msgs[$order] )->escaped(),
800 array( 'order' => $order )
805 if ( $extra !== '' ) {
806 $extra = ' ' . $this->msg( 'parentheses' )->rawParams( $extra )->escaped();
807 $this->mNavigationBar
.= $extra;
810 return $this->mNavigationBar
;
814 * If this supports multiple order type messages, give the message key for
815 * enabling each one in getNavigationBar. The return type is an associative
816 * array whose keys must exactly match the keys of the array returned
817 * by getIndexField(), and whose values are message keys.
821 protected function getOrderTypeMessages() {
827 * IndexPager with a formatted navigation bar
830 abstract class ReverseChronologicalPager
extends IndexPager
{
831 public $mDefaultDirection = true;
835 function getNavigationBar() {
836 if ( !$this->isNavigationBarShown() ) {
840 if ( isset( $this->mNavigationBar
) ) {
841 return $this->mNavigationBar
;
845 'prev' => $this->msg( 'pager-newer-n' )->numParams( $this->mLimit
)->escaped(),
846 'next' => $this->msg( 'pager-older-n' )->numParams( $this->mLimit
)->escaped(),
847 'first' => $this->msg( 'histlast' )->escaped(),
848 'last' => $this->msg( 'histfirst' )->escaped()
851 $pagingLinks = $this->getPagingLinks( $linkTexts );
852 $limitLinks = $this->getLimitLinks();
853 $limits = $this->getLanguage()->pipeList( $limitLinks );
854 $firstLastLinks = $this->msg( 'parentheses' )->rawParams( "{$pagingLinks['first']}" .
855 $this->msg( 'pipe-separator' )->escaped() .
856 "{$pagingLinks['last']}" )->escaped();
858 $this->mNavigationBar
= $firstLastLinks . ' ' .
859 $this->msg( 'viewprevnext' )->rawParams(
860 $pagingLinks['prev'], $pagingLinks['next'], $limits )->escaped();
862 return $this->mNavigationBar
;
865 function getDateCond( $year, $month ) {
866 $year = intval( $year );
867 $month = intval( $month );
869 // Basic validity checks
870 $this->mYear
= $year > 0 ?
$year : false;
871 $this->mMonth
= ( $month > 0 && $month < 13 ) ?
$month : false;
873 // Given an optional year and month, we need to generate a timestamp
874 // to use as "WHERE rev_timestamp <= result"
875 // Examples: year = 2006 equals < 20070101 (+000000)
876 // year=2005, month=1 equals < 20050201
877 // year=2005, month=12 equals < 20060101
878 if ( !$this->mYear
&& !$this->mMonth
) {
882 if ( $this->mYear
) {
883 $year = $this->mYear
;
885 // If no year given, assume the current one
886 $timestamp = MWTimestamp
::getInstance();
887 $year = $timestamp->format( 'Y' );
888 // If this month hasn't happened yet this year, go back to last year's month
889 if ( $this->mMonth
> $timestamp->format( 'n' ) ) {
894 if ( $this->mMonth
) {
895 $month = $this->mMonth +
1;
896 // For December, we want January 1 of the next year
902 // No month implies we want up to the end of the year in question
908 if ( $year > 2032 ) {
912 $ymd = (int)sprintf( "%04d%02d01", $year, $month );
914 if ( $ymd > 20320101 ) {
918 $this->mOffset
= $this->mDb
->timestamp( "${ymd}000000" );
923 * Table-based display with a user-selectable sort order
926 abstract class TablePager
extends IndexPager
{
930 public function __construct( IContextSource
$context = null ) {
932 $this->setContext( $context );
935 $this->mSort
= $this->getRequest()->getText( 'sort' );
936 if ( !array_key_exists( $this->mSort
, $this->getFieldNames() )
937 ||
!$this->isFieldSortable( $this->mSort
)
939 $this->mSort
= $this->getDefaultSort();
941 if ( $this->getRequest()->getBool( 'asc' ) ) {
942 $this->mDefaultDirection
= false;
943 } elseif ( $this->getRequest()->getBool( 'desc' ) ) {
944 $this->mDefaultDirection
= true;
945 } /* Else leave it at whatever the class default is */
947 parent
::__construct();
954 function getStartBody() {
956 $sortClass = $this->getSortHeaderClass();
959 $fields = $this->getFieldNames();
962 foreach ( $fields as $field => $name ) {
963 if ( strval( $name ) == '' ) {
964 $s .= Html
::rawElement( 'th', array(), ' ' ) . "\n";
965 } elseif ( $this->isFieldSortable( $field ) ) {
966 $query = array( 'sort' => $field, 'limit' => $this->mLimit
);
967 if ( $field == $this->mSort
) {
968 # This is the sorted column
969 # Prepare a link that goes in the other sort order
970 if ( $this->mDefaultDirection
) {
972 $image = 'Arr_d.png';
975 $alt = $this->msg( 'descending_abbrev' )->escaped();
978 $image = 'Arr_u.png';
980 $query['desc'] = '1';
981 $alt = $this->msg( 'ascending_abbrev' )->escaped();
983 $image = "$wgStylePath/common/images/$image";
984 $link = $this->makeLink(
985 Html
::element( 'img', array( 'width' => 12, 'height' => 12,
986 'alt' => $alt, 'src' => $image ) ) . htmlspecialchars( $name ), $query );
987 $s .= Html
::rawElement( 'th', array( 'class' => $sortClass ), $link ) . "\n";
989 $s .= Html
::rawElement( 'th', array(),
990 $this->makeLink( htmlspecialchars( $name ), $query ) ) . "\n";
993 $s .= Html
::element( 'th', array(), $name ) . "\n";
997 $tableClass = $this->getTableClass();
998 $ret = Html
::openElement( 'table', array( 'style' => 'border:1px;', 'class' => "mw-datatable $tableClass" ) );
999 $ret .= Html
::rawElement( 'thead', array(), Html
::rawElement( 'tr', array(), "\n" . $s . "\n" ) );
1000 $ret .= Html
::openElement( 'tbody' ) . "\n";
1009 function getEndBody() {
1010 return "</tbody></table>\n";
1017 function getEmptyBody() {
1018 $colspan = count( $this->getFieldNames() );
1019 $msgEmpty = $this->msg( 'table_pager_empty' )->text();
1020 return Html
::rawElement( 'tr', array(),
1021 Html
::element( 'td', array( 'colspan' => $colspan ), $msgEmpty ) );
1026 * @param stdClass $row
1027 * @return String HTML
1029 function formatRow( $row ) {
1030 $this->mCurrentRow
= $row; // In case formatValue etc need to know
1031 $s = Html
::openElement( 'tr', $this->getRowAttrs( $row ) ) . "\n";
1032 $fieldNames = $this->getFieldNames();
1034 foreach ( $fieldNames as $field => $name ) {
1035 $value = isset( $row->$field ) ?
$row->$field : null;
1036 $formatted = strval( $this->formatValue( $field, $value ) );
1038 if ( $formatted == '' ) {
1039 $formatted = ' ';
1042 $s .= Html
::rawElement( 'td', $this->getCellAttrs( $field, $value ), $formatted ) . "\n";
1045 $s .= Html
::closeElement( 'tr' ) . "\n";
1051 * Get a class name to be applied to the given row.
1055 * @param $row Object: the database result row
1058 function getRowClass( $row ) {
1063 * Get attributes to be applied to the given row.
1067 * @param $row Object: the database result row
1068 * @return Array of attribute => value
1070 function getRowAttrs( $row ) {
1071 $class = $this->getRowClass( $row );
1072 if ( $class === '' ) {
1073 // Return an empty array to avoid clutter in HTML like class=""
1076 return array( 'class' => $this->getRowClass( $row ) );
1081 * Get any extra attributes to be applied to the given cell. Don't
1082 * take this as an excuse to hardcode styles; use classes and
1083 * CSS instead. Row context is available in $this->mCurrentRow
1087 * @param string $field The column
1088 * @param string $value The cell contents
1089 * @return Array of attr => value
1091 function getCellAttrs( $field, $value ) {
1092 return array( 'class' => 'TablePager_col_' . $field );
1099 function getIndexField() {
1100 return $this->mSort
;
1107 function getTableClass() {
1108 return 'TablePager';
1115 function getNavClass() {
1116 return 'TablePager_nav';
1123 function getSortHeaderClass() {
1124 return 'TablePager_sort';
1128 * A navigation bar with images
1129 * @return String HTML
1131 public function getNavigationBar() {
1132 global $wgStylePath;
1134 if ( !$this->isNavigationBarShown() ) {
1138 $path = "$wgStylePath/common/images";
1140 'first' => 'table_pager_first',
1141 'prev' => 'table_pager_prev',
1142 'next' => 'table_pager_next',
1143 'last' => 'table_pager_last',
1146 'first' => 'arrow_first_25.png',
1147 'prev' => 'arrow_left_25.png',
1148 'next' => 'arrow_right_25.png',
1149 'last' => 'arrow_last_25.png',
1151 $disabledImages = array(
1152 'first' => 'arrow_disabled_first_25.png',
1153 'prev' => 'arrow_disabled_left_25.png',
1154 'next' => 'arrow_disabled_right_25.png',
1155 'last' => 'arrow_disabled_last_25.png',
1157 if ( $this->getLanguage()->isRTL() ) {
1158 $keys = array_keys( $labels );
1159 $images = array_combine( $keys, array_reverse( $images ) );
1160 $disabledImages = array_combine( $keys, array_reverse( $disabledImages ) );
1163 $linkTexts = array();
1164 $disabledTexts = array();
1165 foreach ( $labels as $type => $label ) {
1166 $msgLabel = $this->msg( $label )->escaped();
1167 $linkTexts[$type] = Html
::element( 'img', array( 'src' => "$path/{$images[$type]}",
1168 'alt' => $msgLabel ) ) . "<br />$msgLabel";
1169 $disabledTexts[$type] = Html
::element( 'img', array( 'src' => "$path/{$disabledImages[$type]}",
1170 'alt' => $msgLabel ) ) . "<br />$msgLabel";
1172 $links = $this->getPagingLinks( $linkTexts, $disabledTexts );
1174 $s = Html
::openElement( 'table', array( 'class' => $this->getNavClass() ) );
1175 $s .= Html
::openElement( 'tr' ) . "\n";
1176 $width = 100 / count( $links ) . '%';
1177 foreach ( $labels as $type => $label ) {
1178 $s .= Html
::rawElement( 'td', array( 'style' => "width:$width;" ), $links[$type] ) . "\n";
1180 $s .= Html
::closeElement( 'tr' ) . Html
::closeElement( 'table' ) . "\n";
1185 * Get a "<select>" element which has options for each of the allowed limits
1187 * @param $attribs String: Extra attributes to set
1188 * @return String: HTML fragment
1190 public function getLimitSelect( $attribs = array() ) {
1191 $select = new XmlSelect( 'limit', false, $this->mLimit
);
1192 $select->addOptions( $this->getLimitSelectList() );
1193 foreach ( $attribs as $name => $value ) {
1194 $select->setAttribute( $name, $value );
1196 return $select->getHTML();
1200 * Get a list of items to show in a "<select>" element of limits.
1201 * This can be passed directly to XmlSelect::addOptions().
1206 public function getLimitSelectList() {
1207 # Add the current limit from the query string
1208 # to avoid that the limit is lost after clicking Go next time
1209 if ( !in_array( $this->mLimit
, $this->mLimitsShown
) ) {
1210 $this->mLimitsShown
[] = $this->mLimit
;
1211 sort( $this->mLimitsShown
);
1214 foreach ( $this->mLimitsShown
as $key => $value ) {
1215 # The pair is either $index => $limit, in which case the $value
1216 # will be numeric, or $limit => $text, in which case the $value
1218 if ( is_int( $value ) ) {
1220 $text = $this->getLanguage()->formatNum( $limit );
1225 $ret[$text] = $limit;
1231 * Get \<input type="hidden"\> elements for use in a method="get" form.
1232 * Resubmits all defined elements of the query string, except for a
1233 * blacklist, passed in the $blacklist parameter.
1235 * @param array $blacklist parameters from the request query which should not be resubmitted
1236 * @return String: HTML fragment
1238 function getHiddenFields( $blacklist = array() ) {
1239 $blacklist = (array)$blacklist;
1240 $query = $this->getRequest()->getQueryValues();
1241 foreach ( $blacklist as $name ) {
1242 unset( $query[$name] );
1245 foreach ( $query as $name => $value ) {
1246 $s .= Html
::hidden( $name, $value ) . "\n";
1252 * Get a form containing a limit selection dropdown
1254 * @return String: HTML fragment
1256 function getLimitForm() {
1259 return Html
::rawElement(
1263 'action' => $wgScript
1265 "\n" . $this->getLimitDropdown()
1270 * Gets a limit selection dropdown
1274 function getLimitDropdown() {
1275 # Make the select with some explanatory text
1276 $msgSubmit = $this->msg( 'table_pager_limit_submit' )->escaped();
1278 return $this->msg( 'table_pager_limit' )
1279 ->rawParams( $this->getLimitSelect() )->escaped() .
1280 "\n<input type=\"submit\" value=\"$msgSubmit\"/>\n" .
1281 $this->getHiddenFields( array( 'limit' ) );
1285 * Return true if the named field should be sortable by the UI, false
1288 * @param $field String
1290 abstract function isFieldSortable( $field );
1293 * Format a table cell. The return value should be HTML, but use an empty
1294 * string not   for empty cells. Do not include the <td> and </td>.
1296 * The current result row is available as $this->mCurrentRow, in case you
1297 * need more context.
1301 * @param string $name the database field name
1302 * @param string $value the value retrieved from the database
1304 abstract function formatValue( $name, $value );
1307 * The database field name used as a default sort order.
1313 abstract function getDefaultSort();
1316 * An array mapping database field names to a textual description of the
1317 * field name, for use in the table header. The description should be plain
1318 * text, it will be HTML-escaped later.
1322 abstract function getFieldNames();