52 $title = Title::newFromText( $term );
61 $termMain = $termDb = $term;
66 $engine->setLimitOffset( 100 );
67 $engine->setNamespaces( [ $ns ] );
68 $results = $engine->searchArchiveTitle( $termMain );
69 if ( !$results->isOK() ) {
72 $results = $results->getValue();
81 $condTitles = array_values( array_unique( array_map(
static function (
Title $t ) {
82 return $t->getDBkey();
85 'ar_namespace' => $ns,
86 $dbr->expr(
'ar_title',
'=', $condTitles )
87 ->or(
'ar_title', IExpression::LIKE,
new LikeValue( $termDb, $dbr->anyString() ) ),
104 $title = Title::newFromText( $prefix );
115 'ar_namespace' => $ns,
116 $dbr->expr(
'ar_title', IExpression::LIKE,
new LikeValue( $prefix, $dbr->anyString() ) ),
129 ->select( [
'ar_namespace',
'ar_title',
'count' =>
'COUNT(*)' ] )
131 ->where( $condition )
132 ->groupBy( [
'ar_namespace',
'ar_title' ] )
133 ->orderBy( [
'ar_namespace',
'ar_title' ] )
135 ->caller( __METHOD__ )->fetchResultSet();
147 if ( $this->title->getNamespace() !==
NS_FILE ) {
152 $queryBuilder = FileSelectQueryBuilder::newForArchivedFile( $dbr );
153 $queryBuilder->where( [
'fa_name' => $this->title->getDBkey() ] )
154 ->orderBy(
'fa_timestamp', SelectQueryBuilder::SORT_DESC );
155 return $queryBuilder->caller( __METHOD__ )->fetchResultSet();
161class_alias( PageArchive::class,
'PageArchive' );
Used to show archived pages and eventually restore them.
static listPagesBySearch( $term)
List deleted pages recorded in the archive matching the given term, using search engine archive.
static listPages(IReadableDatabase $dbr, $condition)
__construct(Title $title)
static listPagesByPrefix( $prefix)
List deleted pages recorded in the archive table matching the given title prefix.
listFiles()
List the deleted file revisions for this page, if it's a file page.