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 '