mDb = $dbProvider->getReplicaDatabase(); $this->level = $level; $this->namespace = $namespace; parent::__construct( $context, $linkRenderer ); $this->linkBatchFactory = $linkBatchFactory; } protected function doBatchLookups() { $this->mResult->seek( 0 ); $lb = $this->linkBatchFactory->newLinkBatch(); foreach ( $this->mResult as $row ) { $lb->add( $row->pt_namespace, $row->pt_title ); } $lb->execute(); } public function formatRow( $row ) { $title = Title::makeTitleSafe( $row->pt_namespace, $row->pt_title ); if ( !$title ) { return Html::rawElement( 'li', [], Html::element( 'span', [ 'class' => 'mw-invalidtitle' ], Linker::getInvalidTitleDescription( $this->getContext(), $row->pt_namespace, $row->pt_title ) ) ) . "\n"; } $link = $this->getLinkRenderer()->makeLink( $title ); // Messages: restriction-level-sysop, restriction-level-autoconfirmed $description = $this->msg( 'restriction-level-' . $row->pt_create_perm )->escaped(); $lang = $this->getLanguage(); $expiry = strlen( $row->pt_expiry ) ? $lang->formatExpiry( $row->pt_expiry, TS_MW ) : 'infinity'; if ( $expiry !== 'infinity' ) { $user = $this->getUser(); $description .= $this->msg( 'comma-separator' )->escaped() . $this->msg( 'protect-expiring-local', $lang->userTimeAndDate( $expiry, $user ), $lang->userDate( $expiry, $user ), $lang->userTime( $expiry, $user ) )->escaped(); } return '
  • ' . $lang->specialList( $link, $description ) . "
  • \n"; } /** * @return array */ public function getQueryInfo() { $dbr = $this->getDatabase(); $conds = [ $dbr->expr( 'pt_expiry', '>', $this->mDb->timestamp() ) ->or( 'pt_expiry', '=', null ), ]; if ( $this->level ) { $conds['pt_create_perm'] = $this->level; } if ( $this->namespace !== null ) { $conds[] = $dbr->expr( 'pt_namespace', '=', $this->namespace ); } return [ 'tables' => 'protected_titles', 'fields' => [ 'pt_namespace', 'pt_title', 'pt_create_perm', 'pt_expiry', 'pt_timestamp' ], 'conds' => $conds ]; } public function getIndexField() { return [ [ 'pt_timestamp', 'pt_namespace', 'pt_title' ] ]; } } /** * Retain the old class name for backwards compatibility. * @deprecated since 1.41 */ class_alias( ProtectedTitlesPager::class, 'ProtectedTitlesPager' );