2006-07-07 03:28:48 +00:00
|
|
|
<?php
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
/**
|
|
|
|
|
* @defgroup Pager Pager
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup Pager
|
|
|
|
|
*/
|
2006-07-07 03:28:48 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Basic pager interface.
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup Pager
|
2006-07-07 03:28:48 +00:00
|
|
|
*/
|
|
|
|
|
interface Pager {
|
|
|
|
|
function getNavigationBar();
|
|
|
|
|
function getBody();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* IndexPager is an efficient pager which uses a (roughly unique) index in the
|
|
|
|
|
* data set to implement paging, rather than a "LIMIT offset,limit" clause.
|
2007-06-24 03:16:08 +00:00
|
|
|
* In MySQL, such a limit/offset clause requires counting through the
|
|
|
|
|
* specified number of offset rows to find the desired data, which can be
|
|
|
|
|
* expensive for large offsets.
|
2008-04-14 07:45:50 +00:00
|
|
|
*
|
2007-06-24 03:16:08 +00:00
|
|
|
* ReverseChronologicalPager is a child class of the abstract IndexPager, and
|
|
|
|
|
* contains some formatting and display code which is specific to the use of
|
|
|
|
|
* timestamps as indexes. Here is a synopsis of its operation:
|
2008-04-14 07:45:50 +00:00
|
|
|
*
|
2007-06-24 03:16:08 +00:00
|
|
|
* * The query is specified by the offset, limit and direction (dir)
|
2008-04-14 07:45:50 +00:00
|
|
|
* parameters, in addition to any subclass-specific parameters.
|
2007-06-24 03:16:08 +00:00
|
|
|
* * The offset is the non-inclusive start of the DB query. A row with an
|
|
|
|
|
* index value equal to the offset will never be shown.
|
|
|
|
|
* * The query may either be done backwards, where the rows are returned by
|
|
|
|
|
* the database in the opposite order to which they are displayed to the
|
|
|
|
|
* user, or forwards. This is specified by the "dir" parameter, dir=prev
|
|
|
|
|
* means backwards, anything else means forwards. The offset value
|
|
|
|
|
* specifies the start of the database result set, which may be either
|
2008-04-14 07:45:50 +00:00
|
|
|
* the start or end of the displayed data set. This allows "previous"
|
2007-06-24 03:16:08 +00:00
|
|
|
* links to be implemented without knowledge of the index value at the
|
2008-04-14 07:45:50 +00:00
|
|
|
* start of the previous page.
|
2007-06-24 03:16:08 +00:00
|
|
|
* * An additional row beyond the user-specified limit is always requested.
|
|
|
|
|
* This allows us to tell whether we should display a "next" link in the
|
|
|
|
|
* case of forwards mode, or a "previous" link in the case of backwards
|
|
|
|
|
* mode. Determining whether to display the other link (the one for the
|
|
|
|
|
* page before the start of the database result set) can be done
|
2008-04-14 07:45:50 +00:00
|
|
|
* heuristically by examining the offset.
|
2006-07-07 03:28:48 +00:00
|
|
|
*
|
2007-06-24 03:16:08 +00:00
|
|
|
* * An empty offset indicates that the offset condition should be omitted
|
|
|
|
|
* from the query. This naturally produces either the first page or the
|
2008-04-14 07:45:50 +00:00
|
|
|
* last page depending on the dir parameter.
|
2006-07-07 03:28:48 +00:00
|
|
|
*
|
2007-06-24 03:16:08 +00:00
|
|
|
* Subclassing the pager to implement concrete functionality should be fairly
|
2009-08-17 05:09:36 +00:00
|
|
|
* simple, please see the examples in HistoryPage.php and
|
2007-06-24 03:16:08 +00:00
|
|
|
* SpecialIpblocklist.php. You just need to override formatRow(),
|
|
|
|
|
* getQueryInfo() and getIndexField(). Don't forget to call the parent
|
|
|
|
|
* constructor if you override it.
|
2007-04-20 08:55:14 +00:00
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup Pager
|
2006-07-07 03:28:48 +00:00
|
|
|
*/
|
|
|
|
|
abstract class IndexPager implements Pager {
|
|
|
|
|
public $mRequest;
|
|
|
|
|
public $mLimitsShown = array( 20, 50, 100, 250, 500 );
|
|
|
|
|
public $mDefaultLimit = 50;
|
|
|
|
|
public $mOffset, $mLimit;
|
|
|
|
|
public $mQueryDone = false;
|
|
|
|
|
public $mDb;
|
|
|
|
|
public $mPastTheEndRow;
|
|
|
|
|
|
2008-03-20 17:02:35 +00:00
|
|
|
/**
|
2009-09-18 12:43:55 +00:00
|
|
|
* The index to actually be used for ordering. This is a single string
|
|
|
|
|
* even if multiple orderings are supported.
|
2008-03-20 17:02:35 +00:00
|
|
|
*/
|
2006-07-07 03:28:48 +00:00
|
|
|
protected $mIndexField;
|
2009-09-18 12:43:55 +00:00
|
|
|
/** For pages that support multiple types of ordering, which one to use.
|
|
|
|
|
*/
|
2008-03-20 17:02:35 +00:00
|
|
|
protected $mOrderType;
|
2006-07-07 03:28:48 +00:00
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* $mDefaultDirection gives the direction to use when sorting results:
|
2008-03-20 17:02:35 +00:00
|
|
|
* false for ascending, true for descending. If $mIsBackwards is set, we
|
|
|
|
|
* start from the opposite end, but we still sort the page itself according
|
|
|
|
|
* to $mDefaultDirection. E.g., if $mDefaultDirection is false but we're
|
|
|
|
|
* going backwards, we'll display the last page of results, but the last
|
|
|
|
|
* result will be at the bottom, not the top.
|
|
|
|
|
*
|
2008-03-20 21:49:22 +00:00
|
|
|
* Like $mIndexField, $mDefaultDirection will be a single value even if the
|
|
|
|
|
* class supports multiple default directions for different order types.
|
2006-07-07 03:28:48 +00:00
|
|
|
*/
|
2008-03-20 17:02:35 +00:00
|
|
|
public $mDefaultDirection;
|
|
|
|
|
public $mIsBackwards;
|
2006-07-07 03:28:48 +00:00
|
|
|
|
2009-08-17 05:09:36 +00:00
|
|
|
/** True if the current result set is the first one */
|
|
|
|
|
public $mIsFirst;
|
|
|
|
|
|
2006-07-07 03:28:48 +00:00
|
|
|
/**
|
|
|
|
|
* Result object for the query. Warning: seek before use.
|
|
|
|
|
*/
|
|
|
|
|
public $mResult;
|
|
|
|
|
|
2008-03-20 17:02:35 +00:00
|
|
|
public function __construct() {
|
2007-05-08 20:58:57 +00:00
|
|
|
global $wgRequest, $wgUser;
|
2006-07-07 03:28:48 +00:00
|
|
|
$this->mRequest = $wgRequest;
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-06-24 03:16:08 +00:00
|
|
|
# NB: the offset is quoted, not validated. It is treated as an
|
|
|
|
|
# arbitrary string to support the widest variety of index types. Be
|
|
|
|
|
# careful outputting it into HTML!
|
2006-07-07 03:28:48 +00:00
|
|
|
$this->mOffset = $this->mRequest->getText( 'offset' );
|
2008-03-20 17:02:35 +00:00
|
|
|
|
2007-05-08 20:58:57 +00:00
|
|
|
# Use consistent behavior for the limit options
|
|
|
|
|
$this->mDefaultLimit = intval( $wgUser->getOption( 'rclimit' ) );
|
|
|
|
|
list( $this->mLimit, /* $offset */ ) = $this->mRequest->getLimitOffset();
|
2008-03-20 17:02:35 +00:00
|
|
|
|
2006-07-07 03:28:48 +00:00
|
|
|
$this->mIsBackwards = ( $this->mRequest->getVal( 'dir' ) == 'prev' );
|
|
|
|
|
$this->mDb = wfGetDB( DB_SLAVE );
|
2008-03-20 17:02:35 +00:00
|
|
|
|
|
|
|
|
$index = $this->getIndexField();
|
|
|
|
|
$order = $this->mRequest->getVal( 'order' );
|
|
|
|
|
if( is_array( $index ) && isset( $index[$order] ) ) {
|
|
|
|
|
$this->mOrderType = $order;
|
|
|
|
|
$this->mIndexField = $index[$order];
|
|
|
|
|
} elseif( is_array( $index ) ) {
|
|
|
|
|
# First element is the default
|
|
|
|
|
reset( $index );
|
|
|
|
|
list( $this->mOrderType, $this->mIndexField ) = each( $index );
|
|
|
|
|
} else {
|
|
|
|
|
# $index is not an array
|
|
|
|
|
$this->mOrderType = null;
|
|
|
|
|
$this->mIndexField = $index;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( !isset( $this->mDefaultDirection ) ) {
|
2008-03-20 21:49:22 +00:00
|
|
|
$dir = $this->getDefaultDirections();
|
2008-03-20 17:02:35 +00:00
|
|
|
$this->mDefaultDirection = is_array( $dir )
|
|
|
|
|
? $dir[$this->mOrderType]
|
|
|
|
|
: $dir;
|
|
|
|
|
}
|
2006-07-07 03:28:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Do the query, using information from the object context. This function
|
|
|
|
|
* has been kept minimal to make it overridable if necessary, to allow for
|
2006-07-07 03:28:48 +00:00
|
|
|
* result sets formed from multiple DB queries.
|
|
|
|
|
*/
|
|
|
|
|
function doQuery() {
|
|
|
|
|
# Use the child class name for profiling
|
|
|
|
|
$fname = __METHOD__ . ' (' . get_class( $this ) . ')';
|
|
|
|
|
wfProfileIn( $fname );
|
|
|
|
|
|
|
|
|
|
$descending = ( $this->mIsBackwards == $this->mDefaultDirection );
|
|
|
|
|
# Plus an extra row so that we can tell the "next" link should be shown
|
|
|
|
|
$queryLimit = $this->mLimit + 1;
|
|
|
|
|
|
2009-09-18 12:43:55 +00:00
|
|
|
$this->mResult = $this->reallyDoQuery(
|
|
|
|
|
$this->mOffset,
|
|
|
|
|
$queryLimit,
|
|
|
|
|
$descending
|
|
|
|
|
);
|
2006-07-07 03:28:48 +00:00
|
|
|
$this->extractResultInfo( $this->mOffset, $queryLimit, $this->mResult );
|
|
|
|
|
$this->mQueryDone = true;
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-07-18 09:29:41 +00:00
|
|
|
$this->preprocessResults( $this->mResult );
|
|
|
|
|
$this->mResult->rewind(); // Paranoia
|
2006-07-07 03:28:48 +00:00
|
|
|
|
|
|
|
|
wfProfileOut( $fname );
|
|
|
|
|
}
|
2009-09-18 12:43:55 +00:00
|
|
|
|
2008-10-29 18:15:39 +00:00
|
|
|
/**
|
|
|
|
|
* Return the result wrapper.
|
|
|
|
|
*/
|
|
|
|
|
function getResult() {
|
|
|
|
|
return $this->mResult;
|
|
|
|
|
}
|
2009-09-18 12:43:55 +00:00
|
|
|
|
2008-10-29 19:21:21 +00:00
|
|
|
/**
|
|
|
|
|
* Set the offset from an other source than $wgRequest
|
|
|
|
|
*/
|
|
|
|
|
function setOffset( $offset ) {
|
|
|
|
|
$this->mOffset = $offset;
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* Set the limit from an other source than $wgRequest
|
|
|
|
|
*/
|
|
|
|
|
function setLimit( $limit ) {
|
|
|
|
|
$this->mLimit = $limit;
|
|
|
|
|
}
|
2006-07-07 03:28:48 +00:00
|
|
|
|
|
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Extract some useful data from the result object for use by
|
2006-07-07 03:28:48 +00:00
|
|
|
* the navigation bar, put it into $this
|
|
|
|
|
*/
|
|
|
|
|
function extractResultInfo( $offset, $limit, ResultWrapper $res ) {
|
|
|
|
|
$numRows = $res->numRows();
|
|
|
|
|
if ( $numRows ) {
|
|
|
|
|
$row = $res->fetchRow();
|
|
|
|
|
$firstIndex = $row[$this->mIndexField];
|
|
|
|
|
|
|
|
|
|
# Discard the extra result row if there is one
|
|
|
|
|
if ( $numRows > $this->mLimit && $numRows > 1 ) {
|
|
|
|
|
$res->seek( $numRows - 1 );
|
|
|
|
|
$this->mPastTheEndRow = $res->fetchObject();
|
|
|
|
|
$indexField = $this->mIndexField;
|
|
|
|
|
$this->mPastTheEndIndex = $this->mPastTheEndRow->$indexField;
|
|
|
|
|
$res->seek( $numRows - 2 );
|
|
|
|
|
$row = $res->fetchRow();
|
|
|
|
|
$lastIndex = $row[$this->mIndexField];
|
|
|
|
|
} else {
|
|
|
|
|
$this->mPastTheEndRow = null;
|
2007-06-24 03:16:08 +00:00
|
|
|
# Setting indexes to an empty string means that they will be
|
|
|
|
|
# omitted if they would otherwise appear in URLs. It just so
|
|
|
|
|
# happens that this is the right thing to do in the standard
|
|
|
|
|
# UI, in all the relevant cases.
|
2006-07-07 03:28:48 +00:00
|
|
|
$this->mPastTheEndIndex = '';
|
|
|
|
|
$res->seek( $numRows - 1 );
|
|
|
|
|
$row = $res->fetchRow();
|
|
|
|
|
$lastIndex = $row[$this->mIndexField];
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$firstIndex = '';
|
|
|
|
|
$lastIndex = '';
|
|
|
|
|
$this->mPastTheEndRow = null;
|
|
|
|
|
$this->mPastTheEndIndex = '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $this->mIsBackwards ) {
|
|
|
|
|
$this->mIsFirst = ( $numRows < $limit );
|
|
|
|
|
$this->mIsLast = ( $offset == '' );
|
|
|
|
|
$this->mLastShown = $firstIndex;
|
|
|
|
|
$this->mFirstShown = $lastIndex;
|
|
|
|
|
} else {
|
|
|
|
|
$this->mIsFirst = ( $offset == '' );
|
|
|
|
|
$this->mIsLast = ( $numRows < $limit );
|
|
|
|
|
$this->mLastShown = $lastIndex;
|
|
|
|
|
$this->mFirstShown = $firstIndex;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2007-06-24 03:16:08 +00:00
|
|
|
* Do a query with specified parameters, rather than using the object
|
|
|
|
|
* context
|
2006-07-07 03:28:48 +00:00
|
|
|
*
|
|
|
|
|
* @param string $offset Index offset, inclusive
|
|
|
|
|
* @param integer $limit Exact query limit
|
|
|
|
|
* @param boolean $descending Query direction, false for ascending, true for descending
|
|
|
|
|
* @return ResultWrapper
|
|
|
|
|
*/
|
2007-07-06 19:20:29 +00:00
|
|
|
function reallyDoQuery( $offset, $limit, $descending ) {
|
2006-07-07 03:28:48 +00:00
|
|
|
$fname = __METHOD__ . ' (' . get_class( $this ) . ')';
|
|
|
|
|
$info = $this->getQueryInfo();
|
|
|
|
|
$tables = $info['tables'];
|
|
|
|
|
$fields = $info['fields'];
|
|
|
|
|
$conds = isset( $info['conds'] ) ? $info['conds'] : array();
|
|
|
|
|
$options = isset( $info['options'] ) ? $info['options'] : array();
|
2008-05-10 13:38:07 +00:00
|
|
|
$join_conds = isset( $info['join_conds'] ) ? $info['join_conds'] : array();
|
2007-07-06 19:20:29 +00:00
|
|
|
if ( $descending ) {
|
2006-07-07 03:28:48 +00:00
|
|
|
$options['ORDER BY'] = $this->mIndexField;
|
|
|
|
|
$operator = '>';
|
|
|
|
|
} else {
|
|
|
|
|
$options['ORDER BY'] = $this->mIndexField . ' DESC';
|
|
|
|
|
$operator = '<';
|
|
|
|
|
}
|
|
|
|
|
if ( $offset != '' ) {
|
|
|
|
|
$conds[] = $this->mIndexField . $operator . $this->mDb->addQuotes( $offset );
|
|
|
|
|
}
|
|
|
|
|
$options['LIMIT'] = intval( $limit );
|
2008-05-10 13:38:07 +00:00
|
|
|
$res = $this->mDb->select( $tables, $fields, $conds, $fname, $options, $join_conds );
|
2006-07-07 03:28:48 +00:00
|
|
|
return new ResultWrapper( $this->mDb, $res );
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-18 09:29:41 +00:00
|
|
|
/**
|
|
|
|
|
* Pre-process results; useful for performing batch existence checks, etc.
|
|
|
|
|
*
|
|
|
|
|
* @param ResultWrapper $result Result wrapper
|
|
|
|
|
*/
|
2007-07-18 09:52:17 +00:00
|
|
|
protected function preprocessResults( $result ) {}
|
2007-07-18 09:29:41 +00:00
|
|
|
|
2006-07-07 03:28:48 +00:00
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Get the formatted result list. Calls getStartBody(), formatRow() and
|
2006-07-07 03:28:48 +00:00
|
|
|
* getEndBody(), concatenates the results and returns them.
|
|
|
|
|
*/
|
|
|
|
|
function getBody() {
|
|
|
|
|
if ( !$this->mQueryDone ) {
|
|
|
|
|
$this->doQuery();
|
|
|
|
|
}
|
|
|
|
|
# Don't use any extra rows returned by the query
|
|
|
|
|
$numRows = min( $this->mResult->numRows(), $this->mLimit );
|
|
|
|
|
|
|
|
|
|
$s = $this->getStartBody();
|
|
|
|
|
if ( $numRows ) {
|
|
|
|
|
if ( $this->mIsBackwards ) {
|
|
|
|
|
for ( $i = $numRows - 1; $i >= 0; $i-- ) {
|
|
|
|
|
$this->mResult->seek( $i );
|
|
|
|
|
$row = $this->mResult->fetchObject();
|
|
|
|
|
$s .= $this->formatRow( $row );
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$this->mResult->seek( 0 );
|
|
|
|
|
for ( $i = 0; $i < $numRows; $i++ ) {
|
|
|
|
|
$row = $this->mResult->fetchObject();
|
|
|
|
|
$s .= $this->formatRow( $row );
|
|
|
|
|
}
|
|
|
|
|
}
|
2006-08-13 00:49:32 +00:00
|
|
|
} else {
|
|
|
|
|
$s .= $this->getEmptyBody();
|
2006-07-07 03:28:48 +00:00
|
|
|
}
|
|
|
|
|
$s .= $this->getEndBody();
|
|
|
|
|
return $s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Make a self-link
|
|
|
|
|
*/
|
2008-05-07 01:47:05 +00:00
|
|
|
function makeLink($text, $query = null, $type=null) {
|
2006-07-07 03:28:48 +00:00
|
|
|
if ( $query === null ) {
|
|
|
|
|
return $text;
|
|
|
|
|
}
|
2009-01-22 00:11:23 +00:00
|
|
|
|
|
|
|
|
$attrs = array();
|
|
|
|
|
if( in_array( $type, array( 'first', 'prev', 'next', 'last' ) ) ) {
|
|
|
|
|
# HTML5 rel attributes
|
|
|
|
|
$attrs['rel'] = $type;
|
2008-05-07 01:47:05 +00:00
|
|
|
}
|
2008-08-31 12:59:45 +00:00
|
|
|
|
|
|
|
|
if( $type ) {
|
2009-01-22 00:11:23 +00:00
|
|
|
$attrs['class'] = "mw-{$type}link";
|
2008-08-31 12:59:45 +00:00
|
|
|
}
|
2009-09-18 12:43:55 +00:00
|
|
|
return $this->getSkin()->link(
|
|
|
|
|
$this->getTitle(),
|
|
|
|
|
$text,
|
|
|
|
|
$attrs,
|
|
|
|
|
$query + $this->getDefaultQuery(),
|
|
|
|
|
array( 'noclasses', 'known' )
|
|
|
|
|
);
|
2006-07-07 03:28:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Hook into getBody(), allows text to be inserted at the start. This
|
2006-07-07 03:28:48 +00:00
|
|
|
* will be called even if there are no rows in the result set.
|
|
|
|
|
*/
|
|
|
|
|
function getStartBody() {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Hook into getBody() for the end of the list
|
|
|
|
|
*/
|
|
|
|
|
function getEndBody() {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Hook into getBody(), for the bit between the start and the
|
2006-08-13 00:49:32 +00:00
|
|
|
* end when there are no rows
|
|
|
|
|
*/
|
|
|
|
|
function getEmptyBody() {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-07-07 03:28:48 +00:00
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Title used for self-links. Override this if you want to be able to
|
2006-07-07 03:28:48 +00:00
|
|
|
* use a title other than $wgTitle
|
|
|
|
|
*/
|
|
|
|
|
function getTitle() {
|
|
|
|
|
return $GLOBALS['wgTitle'];
|
|
|
|
|
}
|
|
|
|
|
|
2006-11-08 07:12:03 +00:00
|
|
|
/**
|
|
|
|
|
* Get the current skin. This can be overridden if necessary.
|
|
|
|
|
*/
|
|
|
|
|
function getSkin() {
|
|
|
|
|
if ( !isset( $this->mSkin ) ) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
$this->mSkin = $wgUser->getSkin();
|
|
|
|
|
}
|
|
|
|
|
return $this->mSkin;
|
|
|
|
|
}
|
|
|
|
|
|
2006-07-07 03:28:48 +00:00
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Get an array of query parameters that should be put into self-links.
|
|
|
|
|
* By default, all parameters passed in the URL are used, except for a
|
2006-07-07 03:28:48 +00:00
|
|
|
* short blacklist.
|
|
|
|
|
*/
|
|
|
|
|
function getDefaultQuery() {
|
|
|
|
|
if ( !isset( $this->mDefaultQuery ) ) {
|
|
|
|
|
$this->mDefaultQuery = $_GET;
|
|
|
|
|
unset( $this->mDefaultQuery['title'] );
|
|
|
|
|
unset( $this->mDefaultQuery['dir'] );
|
|
|
|
|
unset( $this->mDefaultQuery['offset'] );
|
|
|
|
|
unset( $this->mDefaultQuery['limit'] );
|
2008-03-20 17:02:35 +00:00
|
|
|
unset( $this->mDefaultQuery['order'] );
|
2008-08-29 05:19:05 +00:00
|
|
|
unset( $this->mDefaultQuery['month'] );
|
|
|
|
|
unset( $this->mDefaultQuery['year'] );
|
2006-07-07 03:28:48 +00:00
|
|
|
}
|
|
|
|
|
return $this->mDefaultQuery;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the number of rows in the result set
|
|
|
|
|
*/
|
|
|
|
|
function getNumRows() {
|
|
|
|
|
if ( !$this->mQueryDone ) {
|
|
|
|
|
$this->doQuery();
|
|
|
|
|
}
|
|
|
|
|
return $this->mResult->numRows();
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
/**
|
2008-03-20 21:49:22 +00:00
|
|
|
* Get a URL query array for the prev, next, first and last links.
|
2006-08-13 00:49:32 +00:00
|
|
|
*/
|
|
|
|
|
function getPagingQueries() {
|
|
|
|
|
if ( !$this->mQueryDone ) {
|
|
|
|
|
$this->doQuery();
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
# Don't announce the limit everywhere if it's the default
|
|
|
|
|
$urlLimit = $this->mLimit == $this->mDefaultLimit ? '' : $this->mLimit;
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
if ( $this->mIsFirst ) {
|
|
|
|
|
$prev = false;
|
|
|
|
|
$first = false;
|
|
|
|
|
} else {
|
2009-09-18 12:43:55 +00:00
|
|
|
$prev = array(
|
|
|
|
|
'dir' => 'prev',
|
|
|
|
|
'offset' => $this->mFirstShown,
|
|
|
|
|
'limit' => $urlLimit
|
|
|
|
|
);
|
2006-08-13 00:49:32 +00:00
|
|
|
$first = array( 'limit' => $urlLimit );
|
|
|
|
|
}
|
|
|
|
|
if ( $this->mIsLast ) {
|
|
|
|
|
$next = false;
|
|
|
|
|
$last = false;
|
|
|
|
|
} else {
|
|
|
|
|
$next = array( 'offset' => $this->mLastShown, 'limit' => $urlLimit );
|
|
|
|
|
$last = array( 'dir' => 'prev', 'limit' => $urlLimit );
|
|
|
|
|
}
|
2009-09-18 12:43:55 +00:00
|
|
|
return array(
|
|
|
|
|
'prev' => $prev,
|
|
|
|
|
'next' => $next,
|
|
|
|
|
'first' => $first,
|
|
|
|
|
'last' => $last
|
|
|
|
|
);
|
2006-08-13 00:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
2009-06-20 06:41:59 +00:00
|
|
|
function isNavigationBarShown() {
|
|
|
|
|
if ( !$this->mQueryDone ) {
|
|
|
|
|
$this->doQuery();
|
|
|
|
|
}
|
|
|
|
|
// Hide navigation by default if there is nothing to page
|
|
|
|
|
return !($this->mIsFirst && $this->mIsLast);
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
/**
|
2007-06-24 03:16:08 +00:00
|
|
|
* Get paging links. If a link is disabled, the item from $disabledTexts
|
|
|
|
|
* will be used. If there is no such item, the unlinked text from
|
|
|
|
|
* $linkTexts will be used. Both $linkTexts and $disabledTexts are arrays
|
|
|
|
|
* of HTML.
|
2006-08-13 00:49:32 +00:00
|
|
|
*/
|
|
|
|
|
function getPagingLinks( $linkTexts, $disabledTexts = array() ) {
|
|
|
|
|
$queries = $this->getPagingQueries();
|
|
|
|
|
$links = array();
|
|
|
|
|
foreach ( $queries as $type => $query ) {
|
|
|
|
|
if ( $query !== false ) {
|
2009-09-18 12:43:55 +00:00
|
|
|
$links[$type] = $this->makeLink(
|
|
|
|
|
$linkTexts[$type],
|
|
|
|
|
$queries[$type],
|
|
|
|
|
$type
|
|
|
|
|
);
|
2006-08-13 00:49:32 +00:00
|
|
|
} elseif ( isset( $disabledTexts[$type] ) ) {
|
2008-05-25 17:00:38 +00:00
|
|
|
$links[$type] = $disabledTexts[$type];
|
2006-08-13 00:49:32 +00:00
|
|
|
} else {
|
2008-05-25 17:00:38 +00:00
|
|
|
$links[$type] = $linkTexts[$type];
|
2006-08-13 00:49:32 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $links;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getLimitLinks() {
|
|
|
|
|
global $wgLang;
|
|
|
|
|
$links = array();
|
|
|
|
|
if ( $this->mIsBackwards ) {
|
|
|
|
|
$offset = $this->mPastTheEndIndex;
|
|
|
|
|
} else {
|
|
|
|
|
$offset = $this->mOffset;
|
|
|
|
|
}
|
|
|
|
|
foreach ( $this->mLimitsShown as $limit ) {
|
2009-09-18 12:43:55 +00:00
|
|
|
$links[] = $this->makeLink(
|
|
|
|
|
$wgLang->formatNum( $limit ),
|
|
|
|
|
array( 'offset' => $offset, 'limit' => $limit ),
|
|
|
|
|
'num'
|
|
|
|
|
);
|
2006-08-13 00:49:32 +00:00
|
|
|
}
|
2006-08-13 20:42:10 +00:00
|
|
|
return $links;
|
2006-08-13 00:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
2006-07-07 03:28:48 +00:00
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Abstract formatting function. This should return an HTML string
|
2006-07-07 03:28:48 +00:00
|
|
|
* representing the result row $row. Rows will be concatenated and
|
|
|
|
|
* returned by getBody()
|
|
|
|
|
*/
|
|
|
|
|
abstract function formatRow( $row );
|
|
|
|
|
|
|
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* This function should be overridden to provide all parameters
|
|
|
|
|
* needed for the main paged query. It returns an associative
|
2006-07-07 03:28:48 +00:00
|
|
|
* array with the following elements:
|
|
|
|
|
* tables => Table(s) for passing to Database::select()
|
|
|
|
|
* fields => Field(s) for passing to Database::select(), may be *
|
|
|
|
|
* conds => WHERE conditions
|
|
|
|
|
* options => option array
|
2009-03-31 15:46:34 +00:00
|
|
|
* join_conds => JOIN conditions
|
2006-07-07 03:28:48 +00:00
|
|
|
*/
|
|
|
|
|
abstract function getQueryInfo();
|
|
|
|
|
|
|
|
|
|
/**
|
2008-03-20 17:02:35 +00:00
|
|
|
* This function should be overridden to return the name of the index fi-
|
|
|
|
|
* eld. If the pager supports multiple orders, it may return an array of
|
|
|
|
|
* 'querykey' => 'indexfield' pairs, so that a request with &count=querykey
|
|
|
|
|
* will use indexfield to sort. In this case, the first returned key is
|
|
|
|
|
* the default.
|
2008-03-20 21:49:22 +00:00
|
|
|
*
|
|
|
|
|
* Needless to say, it's really not a good idea to use a non-unique index
|
|
|
|
|
* for this! That won't page right.
|
2006-07-07 03:28:48 +00:00
|
|
|
*/
|
|
|
|
|
abstract function getIndexField();
|
2008-03-20 17:02:35 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return the default sorting direction: false for ascending, true for de-
|
|
|
|
|
* scending. You can also have an associative array of ordertype => dir,
|
|
|
|
|
* if multiple order types are supported. In this case getIndexField()
|
|
|
|
|
* must return an array, and the keys of that must exactly match the keys
|
|
|
|
|
* of this.
|
|
|
|
|
*
|
|
|
|
|
* For backward compatibility, this method's return value will be ignored
|
|
|
|
|
* if $this->mDefaultDirection is already set when the constructor is
|
|
|
|
|
* called, for instance if it's statically initialized. In that case the
|
|
|
|
|
* value of that variable (which must be a boolean) will be used.
|
|
|
|
|
*
|
2008-03-20 21:49:22 +00:00
|
|
|
* Note that despite its name, this does not return the value of the
|
|
|
|
|
* $this->mDefaultDirection member variable. That's the default for this
|
|
|
|
|
* particular instantiation, which is a single value. This is the set of
|
|
|
|
|
* all defaults for the class.
|
2008-03-20 17:02:35 +00:00
|
|
|
*/
|
2008-03-20 21:49:22 +00:00
|
|
|
protected function getDefaultDirections() { return false; }
|
2006-07-07 03:28:48 +00:00
|
|
|
}
|
|
|
|
|
|
2007-02-04 15:35:52 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* IndexPager with an alphabetic list and a formatted navigation bar
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup Pager
|
2007-04-20 08:55:14 +00:00
|
|
|
*/
|
2007-02-04 15:35:52 +00:00
|
|
|
abstract class AlphabeticPager extends IndexPager {
|
2008-04-14 07:45:50 +00:00
|
|
|
/**
|
2008-03-20 21:49:22 +00:00
|
|
|
* Shamelessly stolen bits from ReverseChronologicalPager,
|
2008-04-14 07:45:50 +00:00
|
|
|
* didn't want to do class magic as may be still revamped
|
2007-02-04 15:35:52 +00:00
|
|
|
*/
|
|
|
|
|
function getNavigationBar() {
|
|
|
|
|
global $wgLang;
|
2007-10-30 11:57:39 +00:00
|
|
|
|
2009-06-20 06:41:59 +00:00
|
|
|
if ( !$this->isNavigationBarShown() ) return '';
|
|
|
|
|
|
2008-03-20 17:02:35 +00:00
|
|
|
if( isset( $this->mNavigationBar ) ) {
|
|
|
|
|
return $this->mNavigationBar;
|
|
|
|
|
}
|
|
|
|
|
|
2008-07-09 09:17:20 +00:00
|
|
|
$opts = array( 'parsemag', 'escapenoentities' );
|
2007-02-04 15:35:52 +00:00
|
|
|
$linkTexts = array(
|
2009-09-18 12:43:55 +00:00
|
|
|
'prev' => wfMsgExt(
|
|
|
|
|
'prevn',
|
|
|
|
|
$opts,
|
|
|
|
|
$wgLang->formatNum( $this->mLimit )
|
|
|
|
|
),
|
|
|
|
|
'next' => wfMsgExt(
|
|
|
|
|
'nextn',
|
|
|
|
|
$opts,
|
|
|
|
|
$wgLang->formatNum($this->mLimit )
|
|
|
|
|
),
|
2008-07-09 09:17:20 +00:00
|
|
|
'first' => wfMsgExt( 'page_first', $opts ),
|
|
|
|
|
'last' => wfMsgExt( 'page_last', $opts )
|
2007-02-04 15:35:52 +00:00
|
|
|
);
|
2007-10-30 11:57:39 +00:00
|
|
|
|
2007-02-04 15:35:52 +00:00
|
|
|
$pagingLinks = $this->getPagingLinks( $linkTexts );
|
|
|
|
|
$limitLinks = $this->getLimitLinks();
|
2009-02-09 09:13:30 +00:00
|
|
|
$limits = $wgLang->pipeList( $limitLinks );
|
2007-10-30 11:57:39 +00:00
|
|
|
|
2008-03-20 17:02:35 +00:00
|
|
|
$this->mNavigationBar =
|
2009-09-18 12:43:55 +00:00
|
|
|
"(" . $wgLang->pipeList(
|
|
|
|
|
array( $pagingLinks['first'],
|
|
|
|
|
$pagingLinks['last'] )
|
|
|
|
|
) . ") " .
|
2009-10-01 19:36:39 +00:00
|
|
|
wfMsgHtml( 'viewprevnext', $pagingLinks['prev'],
|
|
|
|
|
$pagingLinks['next'], $limits );
|
2008-03-20 17:02:35 +00:00
|
|
|
|
|
|
|
|
if( !is_array( $this->getIndexField() ) ) {
|
|
|
|
|
# Early return to avoid undue nesting
|
|
|
|
|
return $this->mNavigationBar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$extra = '';
|
|
|
|
|
$first = true;
|
|
|
|
|
$msgs = $this->getOrderTypeMessages();
|
|
|
|
|
foreach( array_keys( $msgs ) as $order ) {
|
2008-03-20 20:54:29 +00:00
|
|
|
if( $first ) {
|
2008-03-20 17:02:35 +00:00
|
|
|
$first = false;
|
2008-03-20 20:54:29 +00:00
|
|
|
} else {
|
2009-02-09 09:13:30 +00:00
|
|
|
$extra .= wfMsgExt( 'pipe-separator' , 'escapenoentities' );
|
2008-03-20 20:54:29 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-03-20 20:54:29 +00:00
|
|
|
if( $order == $this->mOrderType ) {
|
|
|
|
|
$extra .= wfMsgHTML( $msgs[$order] );
|
|
|
|
|
} else {
|
|
|
|
|
$extra .= $this->makeLink(
|
|
|
|
|
wfMsgHTML( $msgs[$order] ),
|
|
|
|
|
array( 'order' => $order )
|
|
|
|
|
);
|
2008-03-20 17:02:35 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( $extra !== '' ) {
|
|
|
|
|
$this->mNavigationBar .= " ($extra)";
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-04 15:35:52 +00:00
|
|
|
return $this->mNavigationBar;
|
2008-03-20 17:02:35 +00:00
|
|
|
}
|
2007-10-30 11:57:39 +00:00
|
|
|
|
2008-03-20 17:02:35 +00:00
|
|
|
/**
|
|
|
|
|
* If this supports multiple order type messages, give the message key for
|
|
|
|
|
* enabling each one in getNavigationBar. The return type is an associa-
|
|
|
|
|
* tive array whose keys must exactly match the keys of the array returned
|
|
|
|
|
* by getIndexField(), and whose values are message keys.
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
protected function getOrderTypeMessages() {
|
|
|
|
|
return null;
|
2007-02-04 15:35:52 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-07-07 03:28:48 +00:00
|
|
|
/**
|
|
|
|
|
* IndexPager with a formatted navigation bar
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup Pager
|
2006-07-07 03:28:48 +00:00
|
|
|
*/
|
|
|
|
|
abstract class ReverseChronologicalPager extends IndexPager {
|
|
|
|
|
public $mDefaultDirection = true;
|
2008-08-01 22:38:45 +00:00
|
|
|
public $mYear;
|
|
|
|
|
public $mMonth;
|
2006-07-07 03:28:48 +00:00
|
|
|
|
|
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getNavigationBar() {
|
|
|
|
|
global $wgLang;
|
|
|
|
|
|
2009-06-20 06:41:59 +00:00
|
|
|
if ( !$this->isNavigationBarShown() ) return '';
|
|
|
|
|
|
2006-07-07 03:28:48 +00:00
|
|
|
if ( isset( $this->mNavigationBar ) ) {
|
|
|
|
|
return $this->mNavigationBar;
|
|
|
|
|
}
|
2007-12-07 09:13:07 +00:00
|
|
|
$nicenumber = $wgLang->formatNum( $this->mLimit );
|
2006-08-13 00:49:32 +00:00
|
|
|
$linkTexts = array(
|
2009-09-18 12:43:55 +00:00
|
|
|
'prev' => wfMsgExt(
|
|
|
|
|
'pager-newer-n',
|
|
|
|
|
array( 'parsemag', 'escape' ),
|
|
|
|
|
$nicenumber
|
|
|
|
|
),
|
|
|
|
|
'next' => wfMsgExt(
|
|
|
|
|
'pager-older-n',
|
|
|
|
|
array( 'parsemag', 'escape' ),
|
|
|
|
|
$nicenumber
|
|
|
|
|
),
|
2007-10-30 11:57:39 +00:00
|
|
|
'first' => wfMsgHtml( 'histlast' ),
|
2006-08-13 00:49:32 +00:00
|
|
|
'last' => wfMsgHtml( 'histfirst' )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$pagingLinks = $this->getPagingLinks( $linkTexts );
|
|
|
|
|
$limitLinks = $this->getLimitLinks();
|
2009-02-09 09:13:30 +00:00
|
|
|
$limits = $wgLang->pipeList( $limitLinks );
|
2007-10-30 11:57:39 +00:00
|
|
|
|
2009-09-18 12:43:55 +00:00
|
|
|
$this->mNavigationBar = "({$pagingLinks['first']}" .
|
|
|
|
|
wfMsgExt( 'pipe-separator' , 'escapenoentities' ) .
|
|
|
|
|
"{$pagingLinks['last']}) " .
|
2009-10-01 19:36:39 +00:00
|
|
|
wfMsgHTML(
|
|
|
|
|
'viewprevnext',
|
|
|
|
|
$pagingLinks['prev'], $pagingLinks['next'],
|
|
|
|
|
$limits
|
|
|
|
|
);
|
2006-08-13 00:49:32 +00:00
|
|
|
return $this->mNavigationBar;
|
|
|
|
|
}
|
2009-09-18 12:43:55 +00:00
|
|
|
|
2008-08-01 22:38:45 +00:00
|
|
|
function getDateCond( $year, $month ) {
|
|
|
|
|
$year = intval($year);
|
|
|
|
|
$month = intval($month);
|
|
|
|
|
// Basic validity checks
|
|
|
|
|
$this->mYear = $year > 0 ? $year : false;
|
|
|
|
|
$this->mMonth = ($month > 0 && $month < 13) ? $month : false;
|
|
|
|
|
// Given an optional year and month, we need to generate a timestamp
|
|
|
|
|
// to use as "WHERE rev_timestamp <= result"
|
|
|
|
|
// Examples: year = 2006 equals < 20070101 (+000000)
|
|
|
|
|
// year=2005, month=1 equals < 20050201
|
|
|
|
|
// year=2005, month=12 equals < 20060101
|
|
|
|
|
if ( !$this->mYear && !$this->mMonth ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( $this->mYear ) {
|
|
|
|
|
$year = $this->mYear;
|
|
|
|
|
} else {
|
|
|
|
|
// If no year given, assume the current one
|
|
|
|
|
$year = gmdate( 'Y' );
|
|
|
|
|
// If this month hasn't happened yet this year, go back to last year's month
|
|
|
|
|
if( $this->mMonth > gmdate( 'n' ) ) {
|
|
|
|
|
$year--;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( $this->mMonth ) {
|
|
|
|
|
$month = $this->mMonth + 1;
|
|
|
|
|
// For December, we want January 1 of the next year
|
|
|
|
|
if ($month > 12) {
|
|
|
|
|
$month = 1;
|
|
|
|
|
$year++;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// No month implies we want up to the end of the year in question
|
|
|
|
|
$month = 1;
|
|
|
|
|
$year++;
|
|
|
|
|
}
|
|
|
|
|
// Y2K38 bug
|
|
|
|
|
if ( $year > 2032 ) {
|
|
|
|
|
$year = 2032;
|
|
|
|
|
}
|
|
|
|
|
$ymd = (int)sprintf( "%04d%02d01", $year, $month );
|
|
|
|
|
if ( $ymd > 20320101 ) {
|
|
|
|
|
$ymd = 20320101;
|
|
|
|
|
}
|
|
|
|
|
$this->mOffset = $this->mDb->timestamp( "${ymd}000000" );
|
|
|
|
|
}
|
2006-08-13 00:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Table-based display with a user-selectable sort order
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup Pager
|
2006-08-13 00:49:32 +00:00
|
|
|
*/
|
|
|
|
|
abstract class TablePager extends IndexPager {
|
|
|
|
|
var $mSort;
|
|
|
|
|
var $mCurrentRow;
|
|
|
|
|
|
|
|
|
|
function __construct() {
|
|
|
|
|
global $wgRequest;
|
|
|
|
|
$this->mSort = $wgRequest->getText( 'sort' );
|
|
|
|
|
if ( !array_key_exists( $this->mSort, $this->getFieldNames() ) ) {
|
|
|
|
|
$this->mSort = $this->getDefaultSort();
|
2006-07-07 03:28:48 +00:00
|
|
|
}
|
2006-08-13 00:49:32 +00:00
|
|
|
if ( $wgRequest->getBool( 'asc' ) ) {
|
|
|
|
|
$this->mDefaultDirection = false;
|
|
|
|
|
} elseif ( $wgRequest->getBool( 'desc' ) ) {
|
|
|
|
|
$this->mDefaultDirection = true;
|
|
|
|
|
} /* Else leave it at whatever the class default is */
|
2006-07-07 03:28:48 +00:00
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
parent::__construct();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getStartBody() {
|
|
|
|
|
global $wgStylePath;
|
2006-08-16 00:25:12 +00:00
|
|
|
$tableClass = htmlspecialchars( $this->getTableClass() );
|
|
|
|
|
$sortClass = htmlspecialchars( $this->getSortHeaderClass() );
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2006-08-16 00:25:12 +00:00
|
|
|
$s = "<table border='1' class=\"$tableClass\"><thead><tr>\n";
|
2006-08-13 00:49:32 +00:00
|
|
|
$fields = $this->getFieldNames();
|
2006-08-17 11:05:13 +00:00
|
|
|
|
|
|
|
|
# Make table header
|
2006-08-13 00:49:32 +00:00
|
|
|
foreach ( $fields as $field => $name ) {
|
|
|
|
|
if ( strval( $name ) == '' ) {
|
|
|
|
|
$s .= "<th> </th>\n";
|
|
|
|
|
} elseif ( $this->isFieldSortable( $field ) ) {
|
|
|
|
|
$query = array( 'sort' => $field, 'limit' => $this->mLimit );
|
|
|
|
|
if ( $field == $this->mSort ) {
|
|
|
|
|
# This is the sorted column
|
|
|
|
|
# Prepare a link that goes in the other sort order
|
|
|
|
|
if ( $this->mDefaultDirection ) {
|
|
|
|
|
# Descending
|
|
|
|
|
$image = 'Arr_u.png';
|
|
|
|
|
$query['asc'] = '1';
|
|
|
|
|
$query['desc'] = '';
|
|
|
|
|
$alt = htmlspecialchars( wfMsg( 'descending_abbrev' ) );
|
|
|
|
|
} else {
|
|
|
|
|
# Ascending
|
|
|
|
|
$image = 'Arr_d.png';
|
|
|
|
|
$query['asc'] = '';
|
|
|
|
|
$query['desc'] = '1';
|
|
|
|
|
$alt = htmlspecialchars( wfMsg( 'ascending_abbrev' ) );
|
|
|
|
|
}
|
|
|
|
|
$image = htmlspecialchars( "$wgStylePath/common/images/$image" );
|
2008-04-14 07:45:50 +00:00
|
|
|
$link = $this->makeLink(
|
2006-08-13 00:49:32 +00:00
|
|
|
"<img width=\"12\" height=\"12\" alt=\"$alt\" src=\"$image\" />" .
|
|
|
|
|
htmlspecialchars( $name ), $query );
|
2006-08-16 00:25:12 +00:00
|
|
|
$s .= "<th class=\"$sortClass\">$link</th>\n";
|
2006-08-13 00:49:32 +00:00
|
|
|
} else {
|
|
|
|
|
$s .= '<th>' . $this->makeLink( htmlspecialchars( $name ), $query ) . "</th>\n";
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$s .= '<th>' . htmlspecialchars( $name ) . "</th>\n";
|
|
|
|
|
}
|
2006-07-07 03:28:48 +00:00
|
|
|
}
|
2006-08-13 00:49:32 +00:00
|
|
|
$s .= "</tr></thead><tbody>\n";
|
2008-04-14 07:45:50 +00:00
|
|
|
return $s;
|
2006-08-13 00:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getEndBody() {
|
2007-01-06 15:19:14 +00:00
|
|
|
return "</tbody></table>\n";
|
2006-08-13 00:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getEmptyBody() {
|
|
|
|
|
$colspan = count( $this->getFieldNames() );
|
|
|
|
|
$msgEmpty = wfMsgHtml( 'table_pager_empty' );
|
|
|
|
|
return "<tr><td colspan=\"$colspan\">$msgEmpty</td></tr>\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function formatRow( $row ) {
|
2009-04-29 15:59:59 +00:00
|
|
|
$this->mCurrentRow = $row; # In case formatValue etc need to know
|
|
|
|
|
$s = Xml::openElement( 'tr', $this->getRowAttrs($row) );
|
2006-08-13 00:49:32 +00:00
|
|
|
$fieldNames = $this->getFieldNames();
|
|
|
|
|
foreach ( $fieldNames as $field => $name ) {
|
|
|
|
|
$value = isset( $row->$field ) ? $row->$field : null;
|
|
|
|
|
$formatted = strval( $this->formatValue( $field, $value ) );
|
|
|
|
|
if ( $formatted == '' ) {
|
|
|
|
|
$formatted = ' ';
|
|
|
|
|
}
|
2009-04-29 15:59:59 +00:00
|
|
|
$s .= Xml::tags( 'td', $this->getCellAttrs( $field, $value ), $formatted );
|
2006-07-07 03:28:48 +00:00
|
|
|
}
|
2006-08-13 00:49:32 +00:00
|
|
|
$s .= "</tr>\n";
|
|
|
|
|
return $s;
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-01 08:51:54 +00:00
|
|
|
/**
|
|
|
|
|
* Get a class name to be applied to the given row.
|
|
|
|
|
* @param object $row The database result row
|
|
|
|
|
*/
|
2009-04-29 15:59:59 +00:00
|
|
|
function getRowClass( $row ) {
|
2009-01-28 20:08:46 +00:00
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-29 15:59:59 +00:00
|
|
|
/**
|
|
|
|
|
* Get attributes to be applied to the given row.
|
|
|
|
|
* @param object $row The database result row
|
|
|
|
|
* @return associative array
|
|
|
|
|
*/
|
|
|
|
|
function getRowAttrs( $row ) {
|
|
|
|
|
return array( 'class' => $this->getRowClass( $row ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2009-09-18 12:43:55 +00:00
|
|
|
* Get any extra attributes to be applied to the given cell. Don't
|
|
|
|
|
* take this as an excuse to hardcode styles; use classes and
|
2009-04-29 15:59:59 +00:00
|
|
|
* CSS instead. Row context is available in $this->mCurrentRow
|
|
|
|
|
* @param $field The column
|
|
|
|
|
* @param $value The cell contents
|
|
|
|
|
* @return associative array
|
|
|
|
|
*/
|
|
|
|
|
function getCellAttrs( $field, $value ) {
|
|
|
|
|
return array( 'class' => 'TablePager_col_' . $field );
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
function getIndexField() {
|
|
|
|
|
return $this->mSort;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-16 00:25:12 +00:00
|
|
|
function getTableClass() {
|
|
|
|
|
return 'TablePager';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getNavClass() {
|
|
|
|
|
return 'TablePager_nav';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getSortHeaderClass() {
|
|
|
|
|
return 'TablePager_sort';
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
/**
|
|
|
|
|
* A navigation bar with images
|
|
|
|
|
*/
|
|
|
|
|
function getNavigationBar() {
|
2006-08-13 18:23:15 +00:00
|
|
|
global $wgStylePath, $wgContLang;
|
2009-06-20 06:41:59 +00:00
|
|
|
|
|
|
|
|
if ( !$this->isNavigationBarShown() ) return '';
|
|
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
$path = "$wgStylePath/common/images";
|
2006-08-13 18:23:15 +00:00
|
|
|
$labels = array(
|
2006-08-13 00:49:32 +00:00
|
|
|
'first' => 'table_pager_first',
|
|
|
|
|
'prev' => 'table_pager_prev',
|
|
|
|
|
'next' => 'table_pager_next',
|
|
|
|
|
'last' => 'table_pager_last',
|
|
|
|
|
);
|
|
|
|
|
$images = array(
|
2009-08-22 01:24:04 +00:00
|
|
|
'first' => 'arrow_first_25.png',
|
|
|
|
|
'prev' => 'arrow_left_25.png',
|
|
|
|
|
'next' => 'arrow_right_25.png',
|
|
|
|
|
'last' => 'arrow_last_25.png',
|
2006-08-13 00:49:32 +00:00
|
|
|
);
|
|
|
|
|
$disabledImages = array(
|
2009-08-22 01:24:04 +00:00
|
|
|
'first' => 'arrow_disabled_first_25.png',
|
|
|
|
|
'prev' => 'arrow_disabled_left_25.png',
|
|
|
|
|
'next' => 'arrow_disabled_right_25.png',
|
|
|
|
|
'last' => 'arrow_disabled_last_25.png',
|
2006-08-13 00:49:32 +00:00
|
|
|
);
|
2009-08-22 01:24:04 +00:00
|
|
|
if( $wgContLang->isRTL() ) {
|
|
|
|
|
$keys = array_keys( $labels );
|
|
|
|
|
$images = array_combine( $keys, array_reverse( $images ) );
|
|
|
|
|
$disabledImages = array_combine( $keys, array_reverse( $disabledImages ) );
|
|
|
|
|
}
|
2007-01-06 15:19:14 +00:00
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
$linkTexts = array();
|
|
|
|
|
$disabledTexts = array();
|
|
|
|
|
foreach ( $labels as $type => $label ) {
|
|
|
|
|
$msgLabel = wfMsgHtml( $label );
|
|
|
|
|
$linkTexts[$type] = "<img src=\"$path/{$images[$type]}\" alt=\"$msgLabel\"/><br/>$msgLabel";
|
|
|
|
|
$disabledTexts[$type] = "<img src=\"$path/{$disabledImages[$type]}\" alt=\"$msgLabel\"/><br/>$msgLabel";
|
|
|
|
|
}
|
|
|
|
|
$links = $this->getPagingLinks( $linkTexts, $disabledTexts );
|
|
|
|
|
|
2006-08-16 00:25:12 +00:00
|
|
|
$navClass = htmlspecialchars( $this->getNavClass() );
|
2007-01-06 15:19:14 +00:00
|
|
|
$s = "<table class=\"$navClass\" align=\"center\" cellpadding=\"3\"><tr>\n";
|
2006-08-13 00:49:32 +00:00
|
|
|
$cellAttrs = 'valign="top" align="center" width="' . 100 / count( $links ) . '%"';
|
|
|
|
|
foreach ( $labels as $type => $label ) {
|
|
|
|
|
$s .= "<td $cellAttrs>{$links[$type]}</td>\n";
|
|
|
|
|
}
|
2007-01-06 15:19:14 +00:00
|
|
|
$s .= "</tr></table>\n";
|
2006-08-13 00:49:32 +00:00
|
|
|
return $s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a <select> element which has options for each of the allowed limits
|
|
|
|
|
*/
|
|
|
|
|
function getLimitSelect() {
|
|
|
|
|
global $wgLang;
|
|
|
|
|
$s = "<select name=\"limit\">";
|
2009-08-31 11:30:50 +00:00
|
|
|
foreach ( $this->mLimitsShown as $key => $value ) {
|
|
|
|
|
# The pair is either $index => $limit, in which case the $value
|
|
|
|
|
# will be numeric, or $limit => $text, in which case the $value
|
|
|
|
|
# will be a string.
|
|
|
|
|
if( is_int( $value ) ){
|
2009-09-08 23:32:56 +00:00
|
|
|
$limit = $value;
|
|
|
|
|
$text = $wgLang->formatNum( $limit );
|
2009-08-31 11:30:50 +00:00
|
|
|
} else {
|
|
|
|
|
$limit = $key;
|
|
|
|
|
$text = $value;
|
|
|
|
|
}
|
|
|
|
|
$selected = ( $limit == $this->mLimit ? 'selected="selected"' : '' );
|
|
|
|
|
$s .= "<option value=\"$limit\" $selected>$text</option>\n";
|
2006-08-13 00:49:32 +00:00
|
|
|
}
|
|
|
|
|
$s .= "</select>";
|
|
|
|
|
return $s;
|
|
|
|
|
}
|
2006-07-07 03:28:48 +00:00
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Get <input type="hidden"> elements for use in a method="get" form.
|
|
|
|
|
* Resubmits all defined elements of the $_GET array, except for a
|
2006-08-13 00:49:32 +00:00
|
|
|
* blacklist, passed in the $blacklist parameter.
|
|
|
|
|
*/
|
|
|
|
|
function getHiddenFields( $blacklist = array() ) {
|
|
|
|
|
$blacklist = (array)$blacklist;
|
|
|
|
|
$query = $_GET;
|
|
|
|
|
foreach ( $blacklist as $name ) {
|
|
|
|
|
unset( $query[$name] );
|
2006-07-07 03:28:48 +00:00
|
|
|
}
|
2006-08-13 00:49:32 +00:00
|
|
|
$s = '';
|
|
|
|
|
foreach ( $query as $name => $value ) {
|
|
|
|
|
$encName = htmlspecialchars( $name );
|
|
|
|
|
$encValue = htmlspecialchars( $value );
|
|
|
|
|
$s .= "<input type=\"hidden\" name=\"$encName\" value=\"$encValue\"/>\n";
|
|
|
|
|
}
|
|
|
|
|
return $s;
|
2006-07-07 03:28:48 +00:00
|
|
|
}
|
|
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
/**
|
|
|
|
|
* Get a form containing a limit selection dropdown
|
|
|
|
|
*/
|
|
|
|
|
function getLimitForm() {
|
2009-07-23 20:18:34 +00:00
|
|
|
global $wgScript;
|
|
|
|
|
|
2006-08-13 00:49:32 +00:00
|
|
|
# Make the select with some explanatory text
|
|
|
|
|
$msgSubmit = wfMsgHtml( 'table_pager_limit_submit' );
|
|
|
|
|
return
|
2009-09-18 12:43:55 +00:00
|
|
|
Xml::openElement(
|
|
|
|
|
'form',
|
|
|
|
|
array(
|
|
|
|
|
'method' => 'get',
|
|
|
|
|
'action' => $wgScript
|
|
|
|
|
)
|
|
|
|
|
) . "\n" .
|
2008-04-14 07:45:50 +00:00
|
|
|
wfMsgHtml( 'table_pager_limit', $this->getLimitSelect() ) .
|
2006-08-13 00:49:32 +00:00
|
|
|
"\n<input type=\"submit\" value=\"$msgSubmit\"/>\n" .
|
2009-07-23 20:18:34 +00:00
|
|
|
$this->getHiddenFields( array( 'limit' ) ) .
|
2006-08-13 00:49:32 +00:00
|
|
|
"</form>\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2007-06-24 03:16:08 +00:00
|
|
|
* Return true if the named field should be sortable by the UI, false
|
|
|
|
|
* otherwise
|
|
|
|
|
*
|
2006-08-13 00:49:32 +00:00
|
|
|
* @param string $field
|
|
|
|
|
*/
|
|
|
|
|
abstract function isFieldSortable( $field );
|
|
|
|
|
|
|
|
|
|
/**
|
2007-06-24 03:16:08 +00:00
|
|
|
* Format a table cell. The return value should be HTML, but use an empty
|
2008-04-14 07:45:50 +00:00
|
|
|
* string not for empty cells. Do not include the <td> and </td>.
|
2007-06-24 03:16:08 +00:00
|
|
|
*
|
|
|
|
|
* The current result row is available as $this->mCurrentRow, in case you
|
|
|
|
|
* need more context.
|
2006-08-13 00:49:32 +00:00
|
|
|
*
|
|
|
|
|
* @param string $name The database field name
|
|
|
|
|
* @param string $value The value retrieved from the database
|
|
|
|
|
*/
|
|
|
|
|
abstract function formatValue( $name, $value );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The database field name used as a default sort order
|
|
|
|
|
*/
|
|
|
|
|
abstract function getDefaultSort();
|
|
|
|
|
|
|
|
|
|
/**
|
2007-06-24 03:16:08 +00:00
|
|
|
* An array mapping database field names to a textual description of the
|
|
|
|
|
* field name, for use in the table header. The description should be plain
|
|
|
|
|
* text, it will be HTML-escaped later.
|
2006-08-13 00:49:32 +00:00
|
|
|
*/
|
|
|
|
|
abstract function getFieldNames();
|
|
|
|
|
}
|