X-Git-Url: http://git.cyclocoop.org/%22%2C%20generer_url_ecrire%28?a=blobdiff_plain;f=includes%2Fpager%2FIndexPager.php;h=a96ca8731631857991fa5aa1171930f898d76ef0;hb=efa0d7af44326489052468b8f65b54f4b61298c3;hp=f0e7f3e8091721ac13a2a1d2d2920afcfc2daa7c;hpb=c8e2b346f717bcd2bbc357a085cf8ad97fb354eb;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/pager/IndexPager.php b/includes/pager/IndexPager.php index f0e7f3e809..a96ca87316 100644 --- a/includes/pager/IndexPager.php +++ b/includes/pager/IndexPager.php @@ -73,7 +73,7 @@ abstract class IndexPager extends ContextSource implements Pager { const DIR_DESCENDING = true; public $mRequest; - public $mLimitsShown = array( 20, 50, 100, 250, 500 ); + public $mLimitsShown = [ 20, 50, 100, 250, 500 ]; public $mDefaultLimit = 50; public $mOffset, $mLimit; public $mQueryDone = false; @@ -156,14 +156,14 @@ abstract class IndexPager extends ContextSource implements Pager { $this->mIndexField = $index[$order]; $this->mExtraSortFields = isset( $extraSort[$order] ) ? (array)$extraSort[$order] - : array(); + : []; } elseif ( is_array( $index ) ) { # First element is the default reset( $index ); list( $this->mOrderType, $this->mIndexField ) = each( $index ); $this->mExtraSortFields = isset( $extraSort[$this->mOrderType] ) ? (array)$extraSort[$this->mOrderType] - : array(); + : []; } else { # $index is not an array $this->mOrderType = null; @@ -378,15 +378,15 @@ abstract class IndexPager extends ContextSource implements Pager { $info = $this->getQueryInfo(); $tables = $info['tables']; $fields = $info['fields']; - $conds = isset( $info['conds'] ) ? $info['conds'] : array(); - $options = isset( $info['options'] ) ? $info['options'] : array(); - $join_conds = isset( $info['join_conds'] ) ? $info['join_conds'] : array(); - $sortColumns = array_merge( array( $this->mIndexField ), $this->mExtraSortFields ); + $conds = isset( $info['conds'] ) ? $info['conds'] : []; + $options = isset( $info['options'] ) ? $info['options'] : []; + $join_conds = isset( $info['join_conds'] ) ? $info['join_conds'] : []; + $sortColumns = array_merge( [ $this->mIndexField ], $this->mExtraSortFields ); if ( $descending ) { $options['ORDER BY'] = $sortColumns; $operator = $this->mIncludeOffset ? '>=' : '>'; } else { - $orderBy = array(); + $orderBy = []; foreach ( $sortColumns as $col ) { $orderBy[] = $col . ' DESC'; } @@ -397,7 +397,7 @@ abstract class IndexPager extends ContextSource implements Pager { $conds[] = $this->mIndexField . $operator . $this->mDb->addQuotes( $offset ); } $options['LIMIT'] = intval( $limit ); - return array( $tables, $fields, $conds, $fname, $options, $join_conds ); + return [ $tables, $fields, $conds, $fname, $options, $join_conds ]; } /** @@ -463,12 +463,12 @@ abstract class IndexPager extends ContextSource implements Pager { return $text; } - $attrs = array(); - if ( in_array( $type, array( 'prev', 'next' ) ) ) { + $attrs = []; + if ( in_array( $type, [ 'prev', 'next' ] ) ) { $attrs['rel'] = $type; } - if ( in_array( $type, array( 'asc', 'desc' ) ) ) { + if ( in_array( $type, [ 'asc', 'desc' ] ) ) { $attrs['title'] = wfMessage( $type == 'asc' ? 'sort-ascending' : 'sort-descending' )->text(); } @@ -573,26 +573,26 @@ abstract class IndexPager extends ContextSource implements Pager { $prev = false; $first = false; } else { - $prev = array( + $prev = [ 'dir' => 'prev', 'offset' => $this->mFirstShown, 'limit' => $urlLimit - ); - $first = array( 'limit' => $urlLimit ); + ]; + $first = [ 'limit' => $urlLimit ]; } if ( $this->mIsLast ) { $next = false; $last = false; } else { - $next = array( 'offset' => $this->mLastShown, 'limit' => $urlLimit ); - $last = array( 'dir' => 'prev', 'limit' => $urlLimit ); + $next = [ 'offset' => $this->mLastShown, 'limit' => $urlLimit ]; + $last = [ 'dir' => 'prev', 'limit' => $urlLimit ]; } - return array( + return [ 'prev' => $prev, 'next' => $next, 'first' => $first, 'last' => $last - ); + ]; } /** @@ -618,9 +618,9 @@ abstract class IndexPager extends ContextSource implements Pager { * @param array $disabledTexts * @return array */ - function getPagingLinks( $linkTexts, $disabledTexts = array() ) { + function getPagingLinks( $linkTexts, $disabledTexts = [] ) { $queries = $this->getPagingQueries(); - $links = array(); + $links = []; foreach ( $queries as $type => $query ) { if ( $query !== false ) { @@ -640,7 +640,7 @@ abstract class IndexPager extends ContextSource implements Pager { } function getLimitLinks() { - $links = array(); + $links = []; if ( $this->mIsBackwards ) { $offset = $this->mPastTheEndIndex; } else { @@ -649,7 +649,7 @@ abstract class IndexPager extends ContextSource implements Pager { foreach ( $this->mLimitsShown as $limit ) { $links[] = $this->makeLink( $this->getLanguage()->formatNum( $limit ), - array( 'offset' => $offset, 'limit' => $limit ), + [ 'offset' => $offset, 'limit' => $limit ], 'num' ); } @@ -700,8 +700,8 @@ abstract class IndexPager extends ContextSource implements Pager { * not be used in the pager offset or in any links for users. * * If getIndexField() returns an array of 'querykey' => 'indexfield' pairs then - * this must return a corresponding array of 'querykey' => array( fields...) pairs - * in order for a request with &count=querykey to use array( fields...) to sort. + * this must return a corresponding array of 'querykey' => [ fields... ] pairs + * in order for a request with &count=querykey to use [ fields... ] to sort. * * This is useful for pagers that GROUP BY a unique column (say page_id) * and ORDER BY another (say page_len). Using GROUP BY and ORDER BY both on @@ -711,7 +711,7 @@ abstract class IndexPager extends ContextSource implements Pager { * @return array */ protected function getExtraSortFields() { - return array(); + return []; } /**