1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<?php
class CheckUserLogPager extends ReverseChronologicalPager {
public $searchConds, $specialPage, $y, $m;
function __construct( $specialPage, $searchConds, $y, $m ) {
parent::__construct();
$this->getDateCond( $y, $m );
$this->searchConds = $searchConds ? $searchConds : array();
$this->specialPage = $specialPage;
}
function formatRow( $row ) {
if ( $row->cul_reason === '' ) {
$comment = '';
} else {
$comment = Linker::commentBlock( $row->cul_reason );
}
$user = Linker::userLink( $row->cul_user, $row->user_name );
if ( $row->cul_type == 'userips' || $row->cul_type == 'useredits' ) {
$target = Linker::userLink( $row->cul_target_id, $row->cul_target_text ) .
Linker::userToolLinks( $row->cul_target_id, $row->cul_target_text );
} else {
$target = $row->cul_target_text;
}
// Give grep a chance to find the usages:
// checkuser-log-userips, checkuser-log-ipedits, checkuser-log-ipusers,
// checkuser-log-ipedits-xff, checkuser-log-ipusers-xff, checkuser-log-useredits
return '<li>' .
$this->getLanguage()->timeanddate( wfTimestamp( TS_MW, $row->cul_timestamp ), true ) .
$this->msg( 'comma-separator' )->text() .
$this->msg(
'checkuser-log-' . $row->cul_type,
$user,
$target
)->text() .
$comment .
'</li>';
}
/**
* @return string
*/
function getStartBody() {
if ( $this->getNumRows() ) {
return '<ul>';
} else {
return '';
}
}
/**
* @return string
*/
function getEndBody() {
if ( $this->getNumRows() ) {
return '</ul>';
} else {
return '';
}
}
/**
* @return string
*/
function getEmptyBody() {
return '<p>' . $this->msg( 'checkuser-empty' )->escaped() . '</p>';
}
function getQueryInfo() {
$this->searchConds[] = 'user_id = cul_user';
return array(
'tables' => array( 'cu_log', 'user' ),
'fields' => $this->selectFields(),
'conds' => $this->searchConds
);
}
function getIndexField() {
return 'cul_timestamp';
}
function selectFields() {
return array(
'cul_id', 'cul_timestamp', 'cul_user', 'cul_reason', 'cul_type',
'cul_target_id', 'cul_target_text', 'user_name'
);
}
}
|