X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28%27votes%27%2C%20votes=%27waiting%27%29%20%7D%7D?a=blobdiff_plain;f=includes%2FPager.php;h=c7de8c1ea08b7a36eb50d43525c725bddbfb9366;hb=14c580577413106b98e307ad36ca6fe782d42f00;hp=33bf067bad49768af0eeba487a164dbee80f5002;hpb=2b3e945fd2c3aac81c69ca1564a70b39484f754b;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Pager.php b/includes/Pager.php index 33bf067bad..c7de8c1ea0 100644 --- a/includes/Pager.php +++ b/includes/Pager.php @@ -69,7 +69,7 @@ interface Pager { * last page depending on the dir parameter. * * Subclassing the pager to implement concrete functionality should be fairly - * simple, please see the examples in HistoryPage.php and + * simple, please see the examples in HistoryAction.php and * SpecialBlockList.php. You just need to override formatRow(), * getQueryInfo() and getIndexField(). Don't forget to call the parent * constructor if you override it. @@ -365,7 +365,9 @@ abstract class IndexPager extends ContextSource implements Pager { * @return ResultWrapper */ public function reallyDoQuery( $offset, $limit, $descending ) { - list( $tables, $fields, $conds, $fname, $options, $join_conds ) = $this->buildQueryInfo( $offset, $limit, $descending ); + list( $tables, $fields, $conds, $fname, $options, $join_conds ) = + $this->buildQueryInfo( $offset, $limit, $descending ); + return $this->mDb->select( $tables, $fields, $conds, $fname, $options, $join_conds ); } @@ -409,7 +411,8 @@ abstract class IndexPager extends ContextSource implements Pager { * * @param ResultWrapper $result */ - protected function preprocessResults( $result ) {} + protected function preprocessResults( $result ) { + } /** * Get the formatted result list. Calls getStartBody(), formatRow() and @@ -491,7 +494,8 @@ abstract class IndexPager extends ContextSource implements Pager { * * @return void */ - protected function doBatchLookups() {} + protected function doBatchLookups() { + } /** * Hook into getBody(), allows text to be inserted at the start. This @@ -924,8 +928,9 @@ abstract class ReverseChronologicalPager extends IndexPager { * @ingroup Pager */ abstract class TablePager extends IndexPager { - var $mSort; - var $mCurrentRow; + protected $mSort; + + protected $mCurrentRow; public function __construct( IContextSource $context = null ) { if ( $context ) { @@ -995,7 +1000,10 @@ abstract class TablePager extends IndexPager { } $tableClass = $this->getTableClass(); - $ret = Html::openElement( 'table', array( 'style' => 'border:1px;', 'class' => "mw-datatable $tableClass" ) ); + $ret = Html::openElement( 'table', array( + 'style' => 'border:1px;', + 'class' => "mw-datatable $tableClass" ) + ); $ret .= Html::rawElement( 'thead', array(), Html::rawElement( 'tr', array(), "\n" . $s . "\n" ) ); $ret .= Html::openElement( 'tbody' ) . "\n";