MediaWiki
REL1_31
MergeHistoryPager.php
Go to the documentation of this file.
1
<?php
25
class
MergeHistoryPager
extends
ReverseChronologicalPager
{
26
28
public
$mForm
;
29
31
public
$mConds
;
32
33
function
__construct
(
SpecialMergeHistory
$form, $conds,
Title
$source
,
Title
$dest ) {
34
$this->mForm = $form;
35
$this->mConds = $conds;
36
$this->title =
$source
;
37
$this->articleID =
$source
->getArticleID();
38
39
$dbr
=
wfGetDB
(
DB_REPLICA
);
40
$maxtimestamp =
$dbr
->selectField(
41
'revision'
,
42
'MIN(rev_timestamp)'
,
43
[
'rev_page'
=> $dest->
getArticleID
() ],
44
__METHOD__
45
);
46
$this->maxTimestamp = $maxtimestamp;
47
48
parent::__construct( $form->getContext() );
49
}
50
51
function
getStartBody
() {
52
# Do a link batch query
53
$this->mResult->seek( 0 );
54
$batch
=
new
LinkBatch
();
55
# Give some pointers to make (last) links
56
$this->mForm->prevId = [];
57
$rev_id =
null
;
58
foreach
( $this->mResult as $row ) {
59
$batch
->addObj( Title::makeTitleSafe( NS_USER, $row->user_name ) );
60
$batch
->addObj( Title::makeTitleSafe(
NS_USER_TALK
, $row->user_name ) );
61
62
if
( isset( $rev_id ) ) {
63
if
( $rev_id > $row->rev_id ) {
64
$this->mForm->prevId[$rev_id] = $row->rev_id;
65
} elseif ( $rev_id < $row->rev_id ) {
66
$this->mForm->prevId[$row->rev_id] = $rev_id;
67
}
68
}
69
70
$rev_id = $row->rev_id;
71
}
72
73
$batch
->execute();
74
$this->mResult->seek( 0 );
75
76
return
''
;
77
}
78
79
function
formatRow
( $row ) {
80
return
$this->mForm->formatRevisionRow( $row );
81
}
82
83
function
getQueryInfo
() {
84
$conds =
$this->mConds
;
85
$conds[
'rev_page'
] = $this->articleID;
86
$conds[] =
"rev_timestamp < "
. $this->mDb->addQuotes( $this->maxTimestamp );
87
88
$revQuery
= Revision::getQueryInfo( [
'page'
,
'user'
] );
89
return
[
90
'tables'
=>
$revQuery
[
'tables'
],
91
'fields'
=>
$revQuery
[
'fields'
],
92
'conds'
=> $conds,
93
'join_conds'
=>
$revQuery
[
'joins'
]
94
];
95
}
96
97
function
getIndexField
() {
98
return
'rev_timestamp'
;
99
}
100
}
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition
GlobalFunctions.php:2812
LinkBatch
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition
LinkBatch.php:34
MergeHistoryPager
Definition
MergeHistoryPager.php:25
MergeHistoryPager\$mForm
SpecialMergeHistory $mForm
Definition
MergeHistoryPager.php:28
MergeHistoryPager\getStartBody
getStartBody()
Hook into getBody(), allows text to be inserted at the start.
Definition
MergeHistoryPager.php:51
MergeHistoryPager\formatRow
formatRow( $row)
Abstract formatting function.
Definition
MergeHistoryPager.php:79
MergeHistoryPager\getQueryInfo
getQueryInfo()
This function should be overridden to provide all parameters needed for the main paged query.
Definition
MergeHistoryPager.php:83
MergeHistoryPager\__construct
__construct(SpecialMergeHistory $form, $conds, Title $source, Title $dest)
Definition
MergeHistoryPager.php:33
MergeHistoryPager\$mConds
array $mConds
Definition
MergeHistoryPager.php:31
MergeHistoryPager\getIndexField
getIndexField()
This function should be overridden to return the name of the index fi- eld.
Definition
MergeHistoryPager.php:97
ReverseChronologicalPager
Efficient paging for SQL queries.
Definition
ReverseChronologicalPager.php:28
SpecialMergeHistory
Special page allowing users with the appropriate permissions to merge article histories,...
Definition
SpecialMergeHistory.php:30
Title
Represents a title within MediaWiki.
Definition
Title.php:39
Title\getArticleID
getArticleID( $flags=0)
Get the article ID for this Title from the link cache, adding it if necessary.
Definition
Title.php:3436
NS_USER_TALK
const NS_USER_TALK
Definition
Defines.php:77
$batch
$batch
Definition
linkcache.txt:23
$source
$source
Definition
mwdoc-filter.php:46
DB_REPLICA
const DB_REPLICA
Definition
defines.php:25
$dbr
$dbr
Definition
testCompression.php:50
$revQuery
$revQuery
Definition
testCompression.php:51
includes
specials
pagers
MergeHistoryPager.php
Generated on Mon Nov 25 2024 15:35:24 for MediaWiki by
1.10.0